K K4TRIN4 Posting Freak Jul 24, 2012 777 39 Nov 17, 2013 #1 Hello Guys Doed anyone kmow the query to make everyone vip including the new users that register so i dont have to scroll along the user databse where it says vip and put 1 all the time Thanks
Hello Guys Doed anyone kmow the query to make everyone vip including the new users that register so i dont have to scroll along the user databse where it says vip and put 1 all the time Thanks
Data Posting Freak May 19, 2013 593 97 Nov 17, 2013 #2 Run these sqls. ALTER TABLE `users` MODIFY COLUMN `vip` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '1' AFTER `mail_verified`; Click to expand... Update users set vip = '1' Click to expand... Upvote 0 Downvote
Run these sqls. ALTER TABLE `users` MODIFY COLUMN `vip` enum('0','1') CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '1' AFTER `mail_verified`; Click to expand... Update users set vip = '1' Click to expand...
K K4TRIN4 Posting Freak Jul 24, 2012 777 39 Nov 17, 2013 Thread starter #3 Data said: Run these sqls. Click to expand... Thank You So much! Upvote 0 Downvote