2025-04-03 22:14:38 +09:00

8 lines
181 B
SQL

CREATE TABLE messages (
id SERIAL PRIMARY KEY,
chat_id BIGINT NOT NULL,
message_id BIGINT NOT NULL,
token VARCHAR(255) NOT NULL,
UNIQUE (chat_id, message_id)
);