• 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!

MySQL Error

Kevin Cerda

New Member
Joined
Apr 15, 2018
Messages
14
Reaction score
1
I have this little problem, could somebody help me please :C

CONSOLE
Code:
mysql_real_query(): SELECT `vip_time` FROM `accounts` WHERE `name` = 'account'; - MYSQL ERROR: Unknown column 'vip_time' in 'field list' (1054)
 
Solution
Insert this query in your database.
Not sure what kind of column or data is it but it will create it.
SQL:
ALTER TABLE `accounts` ADD `vip_time` int NOT NULL;
Insert this query in your database.
Not sure what kind of column or data is it but it will create it.
SQL:
ALTER TABLE `accounts` ADD `vip_time` int NOT NULL;
 
Solution
Back
Top