MyBB Community Forums

Full Version: Add row to users table?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I add row at the end of users table?

row name -> Rules
default value -> 0


query("ALTER TABLE `".TABLE_PREFIX."users` ADD `rules");

SOLVED!!!!!!
$db->query("ALTER TABLE ".TABLE_PREFIX."users ADD rules int NOT NULL default '1'");
mybb have add column func
Thanks buddy how to use it?