• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Error while saving player

Nerglexo

N E X O
Joined
Dec 31, 2009
Messages
1,120
Reaction score
218
Location
Sweden
I just updated my server from 10.76 to client 10.80 but I get this error everytime I relog:
"Error while saving player"

35heqls.png


Anyone?
 
Anytime you see an error Unknown x column in 'field list' where x is the name of the column, this means the column doesn't exist in the table your trying to update in this case the players table
Code:
ALTER TABLE `table_name` ADD `column_name` Data_Type_To_Set_It_To (optional not null default value);

Just run this query in the sql box, this will add the missing column
Code:
ALTER TABLE `players` ADD `isCasting` tinyint NOT NULL DEFAULT 0;
 
Back
Top