-- Add monthly_xp column to user_xp table
ALTER TABLE `user_xp` ADD COLUMN `monthly_xp` int(11) DEFAULT 0 AFTER `total_xp`;
