View Single Post
  #6  
Old 02-09-2011, 10:30 PM
lerxst2112
Demi-God
 
Join Date: Aug 2010
Posts: 1,742
Default

Try applying this SQL to your database. It is the part of required update 1711 that is currently missing in the PEQ database.

ALTER TABLE `account` ADD `time_creation` INT UNSIGNED DEFAULT '0' NOT NULL AFTER `suspendeduntil`;
UPDATE `account` SET `time_creation` = UNIX_TIMESTAMP() WHERE `time_creation` = 0;
Reply With Quote