Column behaviour_data does not belong to the table

Status
Not open for further replies.

Alozi

New Member
Nov 24, 2015
20
6
It says "Column behaviour_data does not belong to the table when I try so set in a new catalogue, I tried to add that column but that didn't work out either.

VfjKg7T.png


Any help would be appreciated! :)
 

Hypothesis

Programmer
Jan 6, 2019
524
361
Run this query.
Code:
ALTER TABLE `furniture`
ADD COLUMN `behaviour_data`  int(11) NOT NULL DEFAULT 0 AFTER `interaction_type`;
Also I assume if you don't have this column, you haven't ran required queries for Release 2, in the folder, there should be a folder called SQLs, run Behavior Changes.sql and SQLs.sql in your database and this should prevent other errors related to this.
 

Alozi

New Member
Nov 24, 2015
20
6
Run this query.
Code:
ALTER TABLE `furniture`
ADD COLUMN `behaviour_data`  int(11) NOT NULL DEFAULT 0 AFTER `interaction_type`;
Also I assume if you don't have this column, you haven't ran required queries for Release 2, in the folder, there should be a folder called SQLs, run Behavior Changes.sql and SQLs.sql in your database and this should prevent other errors related to this.
Oh that could be possible, and the query helped, thank you! :D
 
  • Like
Reactions: Joe
Status
Not open for further replies.

Users who are viewing this thread

Top