From 5d3e7d12bd9b40b241e8d668b430db26aceb4fec Mon Sep 17 00:00:00 2001 From: Raphael Date: Fri, 13 Feb 2026 19:39:02 +0100 Subject: [PATCH] build(migrations): adding the insert bot - This insert permit to create the bot field --- migrations/002_create_tables.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/migrations/002_create_tables.sql b/migrations/002_create_tables.sql index 5fa656e..a7dcdcb 100644 --- a/migrations/002_create_tables.sql +++ b/migrations/002_create_tables.sql @@ -4,6 +4,7 @@ CREATE TABLE bots ( activity_type bot_activity NOT NULL DEFAULT 'Watching', presence bot_presence NOT NULL DEFAULT 'dnd' ); +INSERT INTO bots DEFAULT VALUES; CREATE TABLE users ( user_id TEXT PRIMARY KEY,