Files
浪子 cba4901058 add
2026-05-15 22:40:43 +08:00

11 lines
291 B
SQL

-- 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)
);