xf_team_privacy in the database was missing a column

alfa1

Well-Known Member
When I tried to create a new Group I faced this error,
.webp

This happened because the table xf_team_privacy in the database was missing a column, allow_guest_comment.

This, I fixed by adding the said column to the database by running this query.
Code:
ALTER TABLE xf_team_privacy ADD COLUMN allow_guest_comment tinyint unsigned not null default '0'
 
In the version 2.6.6 there are not need table xf_team_privacy. All data was stored in table xf_team. Look like you have missed while upgrading.
 
Back
Top