build(migrations): adding the insert bot

- This insert permit to create the bot field
This commit is contained in:
Raphael 2026-02-13 19:39:02 +01:00 committed by Raphaël
parent e21f107c3d
commit 5d3e7d12bd

View file

@ -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,