feat: fix migrations files

This commit is contained in:
2026-01-11 02:46:02 -03:00
parent b1eb23926e
commit 3ddcaaaf15
3 changed files with 6 additions and 6 deletions
@@ -1,4 +1,4 @@
-- Add XP and Level to users for gamification
ALTER TABLE users
ADD COLUMN xp INTEGER NOT NULL DEFAULT 0,
ADD COLUMN level INTEGER NOT NULL DEFAULT 1;
ADD COLUMN IF NOT EXISTS xp INTEGER NOT NULL DEFAULT 0,
ADD COLUMN IF NOT EXISTS level INTEGER NOT NULL DEFAULT 1;