Files
disbahn/migrations/2023-11-05-222006_create_posts/up.sql
T

7 lines
225 B
SQL

CREATE TABLE posts (
announcement_id TEXT NOT NULL,
webhook_id UNSIGNED BIG INT NOT NULL,
message_id UNSIGNED BIG INT NOT NULL,
last_updated TIMESTAMP NOT NULL,
PRIMARY KEY (announcement_id, webhook_id)
);