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