• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved mysql Error: unknown colum 'cast' in 'field list 1054

pazpa

New Member
Joined
Aug 5, 2008
Messages
21
Reaction score
2
Location
Mexico
I Got an error the players doesn't Save.

mysql Error: unknown colum 'cast' in 'field list 1054


error%203_zpsikmdiubi.png
 
Go into your database and place this in the sql box then click the button to submit the query
Code:
ALTER TABLE `players` ADD `cast` INT NOT NULL DEFAULT 0;

Do the same if you get an error for castViewers

Code:
ALTER TABLE `players` ADD `castViewers` INT NOT NULL DEFAULT 0;

And finally if you get an error for castDescription

Code:
ALTER TABLE `players` ADD `castDescription` VARCHAR( 255 );
 
Last edited:
I just specially retrieved password via email to just say thank you pazpa :D had the same issue after upgrading to tfs 0.4 from 0.3.6 and now I solved it with your help. thanks !
 
Back
Top