View Single Post
  #2  
Old 06-16-2016, 12:32 AM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,072
Default

I debugged this, this is actually an issue with your database being extremly extremely outdated.

Code:
ALTER TABLE `character_`
ADD COLUMN `firstlogon`  int(11) NULL DEFAULT 0 AFTER `xtargets`,
ADD COLUMN `inspectmessage`  varchar(200) NULL DEFAULT "" AFTER `firstlogon`;
Run that query and your auto legacy update conversion will run successfully.
Reply With Quote