feat(db/migrations): adding migrations to the database

This commit is contained in:
Raphael 2026-02-12 22:33:18 +01:00
parent 4ebe1367bf
commit 561b4858dc
No known key found for this signature in database
3 changed files with 87 additions and 0 deletions

View file

@ -0,0 +1,2 @@
CREATE TYPE bot_presence AS ENUM ('online', 'idle', 'dnd', 'invisible');
CREATE TYPE bot_activity AS ENUM ('Playing', 'Streaming', 'Listening', 'Watching', 'Competing');