-- Add is_premium field to users table
ALTER TABLE `users` ADD COLUMN `is_premium` TINYINT(1) DEFAULT 0 AFTER `balance`;
