Files
openccb/services/cms-service/migrations/20260111000000_gamification_users.sql
T
2026-01-11 02:46:02 -03:00

5 lines
179 B
SQL

-- Add XP and Level to users for gamification
ALTER TABLE users
ADD COLUMN IF NOT EXISTS xp INTEGER NOT NULL DEFAULT 0,
ADD COLUMN IF NOT EXISTS level INTEGER NOT NULL DEFAULT 1;