memos/store/db/sqlite/migration/prod/0.20/00__reaction.sql

10 lines
279 B
MySQL
Raw Normal View History

2024-02-09 21:59:45 +08:00
-- reaction
CREATE TABLE reaction (
id INTEGER PRIMARY KEY AUTOINCREMENT,
created_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
creator_id INTEGER NOT NULL,
content_id TEXT NOT NULL,
reaction_type TEXT NOT NULL,
UNIQUE(creator_id, content_id, reaction_type)
);