View Single Post
  #3  
Old 11-03-2004, 10:28 PM
Derision
Developer
 
Join Date: Feb 2004
Location: UK
Posts: 1,540
Default Re: "Enter World" Problem

Quote:
Originally Posted by McFox666
Code:
Unknown column 'revoked' in 'field list'
Well, this may indicate that you do not have the 'revoked' field in your account table, which you can try to fix with:

Code:
ALTER TABLE `account` ADD `revoked` TINYINT(3) UNSIGNED DEFAULT "0" NOT NULL;
However, the revoked field has been in the database for a long time, so it is odd that it is missing in your DB.
Reply With Quote