View Single Post
  #3  
Old 08-24-2011, 05:16 PM
Zen Hamster
Fire Beetle
 
Join Date: Aug 2011
Posts: 11
Default

SUCCESS!

If anyone else has this problem, run a new query in Navicat with the following:

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