paringboard/migrations/00000_init.sql
2026-01-05 22:54:32 +09:00

9 lines
No EOL
241 B
SQL

create table
guilds (id text not null primary key, script text null);
create table
messages (
guild_id text not null references guilds (id),
message_id text not null,
primary key (guild_id, message_Id)
);