MyBB Community Forums

Full Version: How do I delete all users in a group at once?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like right now, I want to delete all users in group "Awaiting Activation".
I cannot find such place to delete the users in phpMyAdmin.. how should I do it?
run these two commands in phpMyAdmin

TRUNCATE mybb_awaitingactivation;
DELETE FROM mybb_users WHERE usergroup='5';