MyBB Community Forums

Full Version: How to add table?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have the latest version of myBB installed through cPanel.
My website: https://flexaim.com/forum

How do I add another table?
The user tables of the forum will have a username and password information. But I want to create an additional table or add another field of security due to a program that I'm working on which checks for all 3 fields (user,pass,key) before logging the user in.

Pretty new to myBB and database management so please keep it simple if you can! Smile
Thanks in advance.

Enter your PHPMyAdmin (Or whatever tool you use for SQL managment) and navigate to your mybb_users.

Click on the "Structure" tab at the top of PHPMyAdmin.

Now add a new column named "KEY" that is a "varchar" with a max limit of "255"


My friend suggested me to do this? Is this the correct method?^^
What your friend suggested may work to add a new column (if it meets your requirements). But don't use "KEY" as the literal column name.