mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
279 B
MySQL
10 lines
279 B
MySQL
|
2 years ago
|
-- reaction
|
||
|
|
CREATE TABLE reaction (
|
||
|
2 years ago
|
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
||
|
|
created_ts BIGINT NOT NULL DEFAULT (strftime('%s', 'now')),
|
||
|
2 years ago
|
creator_id INTEGER NOT NULL,
|
||
|
|
content_id TEXT NOT NULL,
|
||
|
|
reaction_type TEXT NOT NULL,
|
||
|
|
UNIQUE(creator_id, content_id, reaction_type)
|
||
|
|
);
|