Files
openccb/services/lms-service/migrations/20251231000000_add_gamification_to_users.sql
T

3 lines
177 B
SQL

-- Add xp and level to users table
ALTER TABLE users ADD COLUMN IF NOT EXISTS xp INT NOT NULL DEFAULT 0;
ALTER TABLE users ADD COLUMN IF NOT EXISTS level INT NOT NULL DEFAULT 1;