mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-06-27 16:10:30 +08:00
6 lines
145 B
SQL
6 lines
145 B
SQL
-- Sqlite3 schema for the bot
|
|
CREATE TABLE IF NOT EXISTS guild_settings (
|
|
guild_id BIGINT NOT NULL PRIMARY KEY,
|
|
log_channel_id BIGINT
|
|
);
|