feat: add gamification features for users, including XP and leveling, with corresponding database schema and API response updates.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
-- 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;
|
||||
Reference in New Issue
Block a user