Query:
ALTER TABLE realmlist ADD `dbinfo` varchar(255) DEFAULT NULL
Error occured at:2007-09-16 23:26:00
Line no.:11
Error Code: 1060 - Duplicate column name 'dbinfo'
Query:
CREATE TABLE `characters` (
`guid` int(11) unsigned NOT NULL default '0',
`acct` int(20) unsigned NOT NULL default '0',
`name` varchar(21) NOT NULL default '',
`race` smallint(3) unsigned NOT NULL,
`class` smallint(3) unsigned NOT NULL,
`gender` tinyint(1) unsigned NOT NULL,
`level` int(3) unsigned NOT NULL,
`xp` int(30) unsigned NOT NULL,
`exploration_data` longtext NOT NULL,
`skills` longtext NOT NULL,
`watched_faction_index` bigint(40) unsigned NOT NULL,
`selected_pvp_title` int(30) unsigned NOT NULL,
`available_pvp_titles` int(30) unsigned NOT NULL,
`gold` int(30) unsigned NOT NULL,
`ammo_id` int(30) unsigned NOT NULL,
`available_prof_points` int(30) unsigned NOT NULL,
`available_talent_points` int(30) unsigned NOT NULL,
`current_hp` int(30) unsigned NOT NULL,
`current_power` int(30) unsigned NOT NULL,
`pvprank` int(30) unsigned NOT NULL,
`bytes` int(30) unsigned NOT NULL,
`bytes2` int(30) unsigned NOT NULL,
`player_flags` int(30) unsigned NOT NULL,
`player_bytes` int(30) unsigned NOT NULL,
`positionX` float NOT NULL default '0',
`positionY` float NOT NULL default '0',
`positionZ` float NOT NULL default '0',
`orientation` float NOT NULL default '0',
`mapId` int(

unsigned NOT NULL default '0',
`zoneId` int(

unsigned NOT NULL default '0',
`taximask` longtext NOT NULL,
`banned` int(6) unsigned NOT NULL default '0',
`banReason` varchar(50) NOT NULL,
`timestamp` text NOT NULL,
`online` int(11) default NULL,
`bindpositionX` float NOT NULL default '0',
`bindpositionY` float NOT NULL default '0',
`bindpositionZ` float NOT NULL default '0',
`bindmapId` int(

unsigned NOT NULL default '0',
`bindzoneId` int(

unsigned NOT NULL default '0',
`isResting` int(1) NOT NULL default '0',
`restState` int(5) NOT NULL default '0',
`restTime` int(5) NOT NULL default '0',
`playedtime` longtext NOT NULL,
`deathstate` int(2) NOT NULL default '0',
`TalentResetTimes` int(3) NOT NULL default '0',
`first_login` tinyint(1) NOT NULL default '0',
`forced_rename_pending` tinyint(1) unsigned NOT NULL default '0',
`publicNote` varchar(32) NOT NULL default '',
`officerNote` varchar(32) NOT NULL default '',
`guildid` int(10) unsigned NOT NULL default '0',
`guildRank` int(10) unsigned NOT NULL default '0',
`charterId` int(10) NOT NULL,
`totalstableslots` int(10) unsigned NOT NULL default '0',
`instance_id` int(10) NOT NULL default '0',
`entrypointmap` int(4) NOT NULL default '0',
`entrypointx` float NOT NULL default '0',
`entrypointy` float NOT NULL default '0',
`entrypointz` float NOT NULL default '0',
`entrypointo` float NOT NULL default '0',
`entrypointinstance` int(10) NOT NULL default '0',
`taxi_path` int(10) NOT NULL default '0',
`taxi_lastnode` int(10) NOT NULL default '0',
`taxi_mountid` int(10) NOT NULL default '0',
`transporter` int(10) NOT NULL default '0',
`transporter_xdiff` float NOT NULL default '0',
`transporter_ydiff` flo
ULL default '0',
`transporter_zdiff` float NOT NULL default '0',
`spells` longtext NOT NULL,
`deleted_spells` longtext NOT NULL,
`reputation` longtext NOT NULL,
`actions` longtext NOT NULL,
`auras` longtext NOT NULL,
`finished_quests` longtext NOT NULL,
`lastDailyReset` int(30) NOT NULL,
`killsToday` int(10) NOT NULL default '0',
`killsYesterday` int(10) NOT NULL default '0',
`killsLifeTime` int(10) NOT NULL default '0',
`honorToday` int(10) NOT NULL default '0',
`honorYesterday` int(10) NOT NULL default '0',
`honorPoints` int(10) NOT NULL default '0',
`difficulty` int(4) NOT NULL default '0',
UNIQUE KEY `guid` (`guid`),
KEY `acct` (`acct`),
KEY `guildid` (`guildid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
Error occured at:2007-09-18 15:25:24
Line no.:269
Error Code: 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'flo
ULL default '0',
`transporter_zdiff` float NOT NULL default '0',
`spells`' at line 68
Query:
CREATE TABLE `accounts` (
`acct` bigint(20) NOT NULL auto_increment,
`login` varchar(255) NOT NULL default '',
`password` varchar(2

NOT NULL default '',
`gm` varchar(27) NOT NULL default '',
`banned` int(30) NOT NULL default '0',
`lastlogin` timestamp NOT NULL default '0000-00-00 00:00:00' on update CURRENT_TIMESTAMP,
`lastip` varchar(15) NOT NULL default '',
`email` varchar(50) NOT NULL default '',
`flags` int(11) NOT NULL default '0',
PRIMARY KEY (`acct`,`login`),
UNIQUE KEY `acct` (`acct`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1
Error occured at:2007-09-18 15:51:58
Line no.:26
Error Code: 1050 - Table 'accounts' already exists
Query:
CREATE TABLE `accounts` (
`acct` int(20) unsigned NOT NULL auto_increment,
`login` varchar(16) NOT NULL default '',
`password` varchar(16) default NULL,
`gm` varchar(10) default '0',
`banned` int(30) unsigned NOT NULL default '0',
`lastlogin` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`lastip` varchar(15) default NULL,
`email` varchar(50) default NULL,
`flags` int(11) NOT NULL default '0',
PRIMARY KEY (`login`),
UNIQUE KEY `acct` (`acct`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1
Error occured at:2007-09-21 23:12:17
Line no.:26
Error Code: 1050 - Table 'accounts' already exists
Query:
CREATE TABLE `accounts` (
`acct` int(20) unsigned NOT NULL auto_increment,
`login` varchar(16) NOT NULL default '',
`password` varchar(16) default NULL,
`gm` varchar(10) default '0',
`banned` int(30) unsigned NOT NULL default '0',
`lastlogin` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`lastip` varchar(15) default NULL,
`email` varchar(50) default NULL,
`flags` int(11) NOT NULL default '0',
PRIMARY KEY (`login`),
UNIQUE KEY `acct` (`acct`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1
Error occured at:2007-09-21 23:12:19
Line no.:26
Error Code: 1050 - Table 'accounts' already exists
Query:
CREATE TABLE `accounts` (
`acct` int(20) unsigned NOT NULL auto_increment,
`login` varchar(16) NOT NULL default '',
`password` varchar(16) default NULL,
`gm` varchar(10) default '0',
`banned` int(30) unsigned NOT NULL default '0',
`lastlogin` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP,
`lastip` varchar(15) default NULL,
`email` varchar(50) default NULL,
`flags` int(11) NOT NULL default '0',
PRIMARY KEY (`login`),
UNIQUE KEY `acct` (`acct`)
) ENGINE=MyISAM AUTO_INCREMENT=27 DEFAULT CHARSET=latin1
Error occured at:2007-09-21 23:12:20
Line no.:26
Error Code: 1050 - Table 'accounts' already exists
Query:
/* Creature Names */
INSERT INTO creature_names VALUES (50000, "Armor", "Dungeon I", 0, 4, 0, 3, 0, 0, 18106, 1, 1, 1, 0)
Error occured at:2007-10-04 18:57:24
Line no.:64
Error Code: 1136 - Column count doesn't match value count at row 1
Query:
/* Creature Names */
INSERT INTO creature_names VALUES (50000, "Armor", "Dungeon I", 0, 4, 0, 3, 0, 0, 18106, 1, 1, 1, 0)
Error occured at:2007-10-04 19:04:32
Line no.:64
Error Code: 1136 - Column count doesn't match value count at row 1