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

7 lines
No EOL
205 B
SQL

create table
webhooks (
guild_id text not null references guilds (id),
channel_id text not null primary key,
webhook_id text not null,
webhook_token text not null
);