add
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
-- Persist Mastodon read markers for home timeline and notifications.
|
||||
|
||||
CREATE TABLE IF NOT EXISTS markers (
|
||||
user_id TEXT NOT NULL,
|
||||
timeline TEXT NOT NULL,
|
||||
last_read_id TEXT NOT NULL,
|
||||
version INTEGER NOT NULL DEFAULT 1,
|
||||
updated_at TEXT NOT NULL,
|
||||
PRIMARY KEY(user_id, timeline)
|
||||
);
|
||||
Reference in New Issue
Block a user