CREATE TABLE IF NOT EXISTS notification_cursor (
user_id text PRIMARY KEY,
last_seen_ts timeuuid, -- 最後看到的通知 timeuuid
updated_at timestamp
);