8 lines
239 B
SQL
8 lines
239 B
SQL
CREATE TABLE IF NOT EXISTS issue_comment_reaction (
|
|
comment_id BIGINT NOT NULL,
|
|
user_uuid UUID NOT NULL,
|
|
reaction VARCHAR(255) NOT NULL,
|
|
created_at TIMESTAMPTZ NOT NULL,
|
|
PRIMARY KEY (comment_id, user_uuid, reaction)
|
|
);
|