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
312 B
MySQL
10 lines
312 B
MySQL
1 year ago
|
-- reaction
|
||
|
CREATE TABLE `reaction` (
|
||
|
`id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
||
|
`created_ts` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||
|
`creator_id` INT NOT NULL,
|
||
|
`content_id` VARCHAR(256) NOT NULL,
|
||
|
`reaction_type` VARCHAR(256) NOT NULL,
|
||
|
UNIQUE(`creator_id`,`content_id`,`reaction_type`)
|
||
|
);
|