CreateMyBB Support Forums

Full Version: SQL Error from Editing User Groups (2)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I edit and try to save a user group I get an SQL error referring to field canbeinvisible:
Code:
MyBB has experienced an internal SQL error and cannot continue.

SQL Error:
1054 - Unknown column 'canbeinvisible' in 'field list'

A solution to this is reported in another forum https://community.mybb.com/thread-233700.html
Code:
ALTER TABLE mybb_usergroups ADD COLUMN canbeinvisible tinyint(1) NOT NULL default '1' AFTER canbereported;

How do I implement this, please?
What is your forum url?
I ran the query on all hosted forums let me know if it helps.
(11-15-2021, 09:53 PM)Jon Wrote: [ -> ]I ran the query on all hosted forums let me know if it helps.

That's done the trick Jon.
Thanks for your support!