MyBB Community Forums

Full Version: Mass moving members
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can someone tell me a piece of code i can run that will move all members of usergroup X into usergroup Y ?

Thanks
Replace x and y to the "GROUPids" and run it in phpMyAdmin or cPanel.

UPDATE `mybb_users` SET `usergroup` = 'y' WHERE `usergroup` = 'x' ;
Thx Lex