This commit is contained in:
浪子
2026-05-15 22:40:43 +08:00
parent e2fcf08e2f
commit cba4901058
7 changed files with 205 additions and 9 deletions
+10
View File
@@ -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)
);