Starboard/database/data/schema.sql
2024-12-05 21:20:22 +03:00

14 lines
No EOL
303 B
SQL

CREATE TABLE message
(
message_id BIGINT NOT NULL,
chat_id BIGINT NOT NULL,
reaction_count INT DEFAULT 0
);
CREATE TABLE chat
(
chat_id BIGINT NOT NULL,
channel_id BIGINT,
min_reaction_count INT DEFAULT 5,
emoji_list TEXT[] DEFAULT array['']
);