release: DB squash & begin AC 4.0.0 development (#4341)

This commit is contained in:
Francesco Borzì 2021-01-25 19:51:22 +01:00 committed by GitHub
parent 2d609e9e48
commit 49712bd12f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1014 changed files with 601786 additions and 462701 deletions

View file

@ -18,22 +18,22 @@ CREATE TABLE `account`
`token_key` varchar(100) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`reg_mail` varchar(255) NOT NULL DEFAULT '',
`joindate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`joindate` timestamp NOT NULL DEFAULT current_timestamp(),
`last_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
`last_attempt_ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
`failed_logins` int(10) unsigned NOT NULL DEFAULT '0',
`locked` tinyint(3) unsigned NOT NULL DEFAULT '0',
`failed_logins` int(10) unsigned NOT NULL DEFAULT 0,
`locked` tinyint(3) unsigned NOT NULL DEFAULT 0,
`lock_country` varchar(2) NOT NULL DEFAULT '00',
`last_login` timestamp NULL DEFAULT NULL,
`online` tinyint(3) unsigned NOT NULL DEFAULT '0',
`expansion` tinyint(3) unsigned NOT NULL DEFAULT '2',
`mutetime` bigint(20) NOT NULL DEFAULT '0',
`online` int(10) unsigned NOT NULL DEFAULT 0,
`expansion` tinyint(3) unsigned NOT NULL DEFAULT 2,
`mutetime` bigint(20) NOT NULL DEFAULT 0,
`mutereason` varchar(255) NOT NULL DEFAULT '',
`muteby` varchar(50) NOT NULL DEFAULT '',
`locale` tinyint(3) unsigned NOT NULL DEFAULT '0',
`locale` tinyint(3) unsigned NOT NULL DEFAULT 0,
`os` varchar(3) NOT NULL DEFAULT '',
`recruiter` int(10) unsigned NOT NULL DEFAULT '0',
`totaltime` int(10) unsigned NOT NULL DEFAULT '0',
`recruiter` int(10) unsigned NOT NULL DEFAULT 0,
`totaltime` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_username` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COMMENT='Account System';

View file

@ -11,7 +11,8 @@ CREATE TABLE `account_access`
(
`id` int(10) unsigned NOT NULL,
`gmlevel` tinyint(3) unsigned NOT NULL,
`RealmID` int(11) NOT NULL DEFAULT '-1',
`RealmID` int(11) NOT NULL DEFAULT -1,
`comment` varchar(255) DEFAULT '',
PRIMARY KEY (`id`,`RealmID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@ -19,16 +20,16 @@ CREATE TABLE `account_access`
LOCK TABLES `account_access` WRITE;
/*!40000 ALTER TABLE `account_access` DISABLE KEYS */;
INSERT INTO `account_access` VALUES
(1,4,-1),
(2,4,-1),
(3,4,-1),
(4,4,-1),
(5,4,-1),
(6,4,-1),
(7,4,-1),
(8,4,-1),
(9,4,-1),
(10,4,-1);
(1,4,-1,'Test account - Console Admin'),
(2,4,-1,'Test account - Console Admin'),
(3,3,-1,'Test account - Ingame Admin'),
(4,3,-1,'Test account - Ingame Admin'),
(5,2,-1,'Test account - Major Game Master'),
(6,2,-1,'Test account - Major Game Master'),
(7,1,-1,'Test account - Minor Game Master'),
(8,1,-1,'Test account - Minor Game Master'),
(9,0,-1,'Test account - Player'),
(10,0,-1,'Test account - Player');
/*!40000 ALTER TABLE `account_access` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

View file

@ -9,12 +9,12 @@ DROP TABLE IF EXISTS `account_banned`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_banned`
(
`id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account id',
`bandate` int(10) unsigned NOT NULL DEFAULT '0',
`unbandate` int(10) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Account id',
`bandate` int(10) unsigned NOT NULL DEFAULT 0,
`unbandate` int(10) unsigned NOT NULL DEFAULT 0,
`bannedby` varchar(50) NOT NULL,
`banreason` varchar(255) NOT NULL,
`active` tinyint(3) unsigned NOT NULL DEFAULT '1',
`active` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`,`bandate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ban List';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `account_muted`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_muted`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`mutedate` int(10) unsigned NOT NULL DEFAULT '0',
`mutetime` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`mutedate` int(10) unsigned NOT NULL DEFAULT 0,
`mutetime` int(10) unsigned NOT NULL DEFAULT 0,
`mutedby` varchar(50) NOT NULL,
`mutereason` varchar(255) NOT NULL,
PRIMARY KEY (`guid`,`mutedate`)

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `autobroadcast`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `autobroadcast`
(
`realmid` int(11) NOT NULL DEFAULT '-1',
`realmid` int(11) NOT NULL DEFAULT -1,
`id` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
`weight` tinyint(3) unsigned DEFAULT '1',
`weight` tinyint(3) unsigned DEFAULT 1,
`text` longtext NOT NULL,
PRIMARY KEY (`id`,`realmid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -9,7 +9,7 @@ DROP TABLE IF EXISTS `ip2nation`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ip2nation`
(
`ip` int(11) unsigned NOT NULL DEFAULT '0',
`ip` int(11) unsigned NOT NULL DEFAULT 0,
`country` char(2) NOT NULL DEFAULT '',
KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -7,15 +7,15 @@
DROP TABLE IF EXISTS `ip2nationCountries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ip2nationCountries`
CREATE TABLE `ip2nationCountries`
(
`code` varchar(4) NOT NULL DEFAULT '',
`iso_code_2` varchar(2) NOT NULL DEFAULT '',
`iso_code_3` varchar(3) DEFAULT '',
`iso_country` varchar(255) NOT NULL DEFAULT '',
`country` varchar(255) NOT NULL DEFAULT '',
`lat` float NOT NULL DEFAULT '0',
`lon` float NOT NULL DEFAULT '0',
`lat` float NOT NULL DEFAULT 0,
`lon` float NOT NULL DEFAULT 0,
PRIMARY KEY (`code`),
KEY `code` (`code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -12,8 +12,8 @@ CREATE TABLE `logs`
`time` int(10) unsigned NOT NULL,
`realm` int(10) unsigned NOT NULL,
`type` varchar(250) NOT NULL,
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`string` text CHARACTER SET latin1
`level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`string` text CHARACTER SET latin1 DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -14,10 +14,10 @@ CREATE TABLE `logs_ip_actions`
`character_guid` int(10) unsigned NOT NULL COMMENT 'Character Guid',
`type` tinyint(3) unsigned NOT NULL,
`ip` varchar(15) NOT NULL DEFAULT '127.0.0.1',
`systemnote` text COMMENT 'Notes inserted by system',
`systemnote` text DEFAULT NULL COMMENT 'Notes inserted by system',
`unixtime` int(10) unsigned NOT NULL COMMENT 'Unixtime',
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Timestamp',
`comment` text COMMENT 'Allows users to add a comment',
`time` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Timestamp',
`comment` text DEFAULT NULL COMMENT 'Allows users to add a comment',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Used to log ips of individual actions';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `realmcharacters`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `realmcharacters`
(
`realmid` int(10) unsigned NOT NULL DEFAULT '0',
`realmid` int(10) unsigned NOT NULL DEFAULT 0,
`acctid` int(10) unsigned NOT NULL,
`numchars` tinyint(3) unsigned NOT NULL DEFAULT '0',
`numchars` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`realmid`,`acctid`),
KEY `acctid` (`acctid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Realm Character Tracker';

View file

@ -14,13 +14,13 @@ CREATE TABLE `realmlist`
`address` varchar(255) NOT NULL DEFAULT '127.0.0.1',
`localAddress` varchar(255) NOT NULL DEFAULT '127.0.0.1',
`localSubnetMask` varchar(255) NOT NULL DEFAULT '255.255.255.0',
`port` smallint(5) unsigned NOT NULL DEFAULT '8085',
`icon` tinyint(3) unsigned NOT NULL DEFAULT '0',
`flag` tinyint(3) unsigned NOT NULL DEFAULT '2',
`timezone` tinyint(3) unsigned NOT NULL DEFAULT '0',
`allowedSecurityLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
`population` float unsigned NOT NULL DEFAULT '0',
`gamebuild` int(10) unsigned NOT NULL DEFAULT '12340',
`port` smallint(5) unsigned NOT NULL DEFAULT 8085,
`icon` tinyint(3) unsigned NOT NULL DEFAULT 0,
`flag` tinyint(3) unsigned NOT NULL DEFAULT 2,
`timezone` tinyint(3) unsigned NOT NULL DEFAULT 0,
`allowedSecurityLevel` tinyint(3) unsigned NOT NULL DEFAULT 0,
`population` float unsigned NOT NULL DEFAULT 0,
`gamebuild` int(10) unsigned NOT NULL DEFAULT 12340,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='Realm System';

View file

@ -10,9 +10,9 @@ DROP TABLE IF EXISTS `uptime`;
CREATE TABLE `uptime`
(
`realmid` int(10) unsigned NOT NULL,
`starttime` int(10) unsigned NOT NULL DEFAULT '0',
`uptime` int(10) unsigned NOT NULL DEFAULT '0',
`maxplayers` smallint(5) unsigned NOT NULL DEFAULT '0',
`starttime` int(10) unsigned NOT NULL DEFAULT 0,
`uptime` int(10) unsigned NOT NULL DEFAULT 0,
`maxplayers` smallint(5) unsigned NOT NULL DEFAULT 0,
`revision` varchar(255) NOT NULL DEFAULT 'AzerothCore',
PRIMARY KEY (`realmid`,`starttime`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Uptime system';

View file

@ -11,7 +11,7 @@ CREATE TABLE `version_db_auth`
(
`sql_rev` varchar(100) NOT NULL,
`required_rev` varchar(100) DEFAULT NULL,
`2019_02_08_00` bit(1) DEFAULT NULL,
`2020_02_07_00` bit(1) DEFAULT NULL,
PRIMARY KEY (`sql_rev`),
KEY `required` (`required_rev`),
CONSTRAINT `required` FOREIGN KEY (`required_rev`) REFERENCES `version_db_auth` (`sql_rev`)
@ -20,6 +20,9 @@ CREATE TABLE `version_db_auth`
LOCK TABLES `version_db_auth` WRITE;
/*!40000 ALTER TABLE `version_db_auth` DISABLE KEYS */;
INSERT INTO `version_db_auth` VALUES
('1554142988374631100',NULL,NULL),
('1579213352894781043',NULL,NULL);
/*!40000 ALTER TABLE `version_db_auth` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `account_data`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_data`
(
`accountId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`accountId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Account Identifier',
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`time` int(10) unsigned NOT NULL DEFAULT 0,
`data` blob NOT NULL,
PRIMARY KEY (`accountId`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -10,8 +10,8 @@ DROP TABLE IF EXISTS `account_instance_times`;
CREATE TABLE `account_instance_times`
(
`accountId` int(10) unsigned NOT NULL,
`instanceId` int(10) unsigned NOT NULL DEFAULT '0',
`releaseTime` bigint(20) unsigned NOT NULL DEFAULT '0',
`instanceId` int(10) unsigned NOT NULL DEFAULT 0,
`releaseTime` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`accountId`,`instanceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `account_tutorial`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `account_tutorial`
(
`accountId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
`tut0` int(10) unsigned NOT NULL DEFAULT '0',
`tut1` int(10) unsigned NOT NULL DEFAULT '0',
`tut2` int(10) unsigned NOT NULL DEFAULT '0',
`tut3` int(10) unsigned NOT NULL DEFAULT '0',
`tut4` int(10) unsigned NOT NULL DEFAULT '0',
`tut5` int(10) unsigned NOT NULL DEFAULT '0',
`tut6` int(10) unsigned NOT NULL DEFAULT '0',
`tut7` int(10) unsigned NOT NULL DEFAULT '0',
`accountId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Account Identifier',
`tut0` int(10) unsigned NOT NULL DEFAULT 0,
`tut1` int(10) unsigned NOT NULL DEFAULT 0,
`tut2` int(10) unsigned NOT NULL DEFAULT 0,
`tut3` int(10) unsigned NOT NULL DEFAULT 0,
`tut4` int(10) unsigned NOT NULL DEFAULT 0,
`tut5` int(10) unsigned NOT NULL DEFAULT 0,
`tut6` int(10) unsigned NOT NULL DEFAULT 0,
`tut7` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`accountId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -10,7 +10,7 @@ DROP TABLE IF EXISTS `addons`;
CREATE TABLE `addons`
(
`name` varchar(120) NOT NULL DEFAULT '',
`crc` int(10) unsigned NOT NULL DEFAULT '0',
`crc` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Addons';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,21 +9,21 @@ DROP TABLE IF EXISTS `arena_team`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `arena_team`
(
`arenaTeamId` int(10) unsigned NOT NULL DEFAULT '0',
`arenaTeamId` int(10) unsigned NOT NULL DEFAULT 0,
`name` varchar(24) NOT NULL,
`captainGuid` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`rating` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT '0',
`weekGames` smallint(5) unsigned NOT NULL DEFAULT '0',
`weekWins` smallint(5) unsigned NOT NULL DEFAULT '0',
`rank` int(10) unsigned NOT NULL DEFAULT '0',
`backgroundColor` int(10) unsigned NOT NULL DEFAULT '0',
`emblemStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`emblemColor` int(10) unsigned NOT NULL DEFAULT '0',
`borderStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`borderColor` int(10) unsigned NOT NULL DEFAULT '0',
`captainGuid` int(10) unsigned NOT NULL DEFAULT 0,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`rating` smallint(5) unsigned NOT NULL DEFAULT 0,
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT 0,
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT 0,
`weekGames` smallint(5) unsigned NOT NULL DEFAULT 0,
`weekWins` smallint(5) unsigned NOT NULL DEFAULT 0,
`rank` int(10) unsigned NOT NULL DEFAULT 0,
`backgroundColor` int(10) unsigned NOT NULL DEFAULT 0,
`emblemStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`emblemColor` int(10) unsigned NOT NULL DEFAULT 0,
`borderStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`borderColor` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`arenaTeamId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,13 +9,13 @@ DROP TABLE IF EXISTS `arena_team_member`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `arena_team_member`
(
`arenaTeamId` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`weekGames` smallint(5) unsigned NOT NULL DEFAULT '0',
`weekWins` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT '0',
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT '0',
`personalRating` smallint(5) NOT NULL DEFAULT '0',
`arenaTeamId` int(10) unsigned NOT NULL DEFAULT 0,
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`weekGames` smallint(5) unsigned NOT NULL DEFAULT 0,
`weekWins` smallint(5) unsigned NOT NULL DEFAULT 0,
`seasonGames` smallint(5) unsigned NOT NULL DEFAULT 0,
`seasonWins` smallint(5) unsigned NOT NULL DEFAULT 0,
`personalRating` smallint(5) NOT NULL DEFAULT 0,
PRIMARY KEY (`arenaTeamId`,`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,16 +9,16 @@ DROP TABLE IF EXISTS `auctionhouse`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `auctionhouse`
(
`id` int(10) unsigned NOT NULL DEFAULT '0',
`auctioneerguid` int(10) unsigned NOT NULL DEFAULT '0',
`itemguid` int(10) unsigned NOT NULL DEFAULT '0',
`itemowner` int(10) unsigned NOT NULL DEFAULT '0',
`buyoutprice` int(10) unsigned NOT NULL DEFAULT '0',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`buyguid` int(10) unsigned NOT NULL DEFAULT '0',
`lastbid` int(10) unsigned NOT NULL DEFAULT '0',
`startbid` int(10) unsigned NOT NULL DEFAULT '0',
`deposit` int(10) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0,
`auctioneerguid` int(10) unsigned NOT NULL DEFAULT 0,
`itemguid` int(10) unsigned NOT NULL DEFAULT 0,
`itemowner` int(10) unsigned NOT NULL DEFAULT 0,
`buyoutprice` int(10) unsigned NOT NULL DEFAULT 0,
`time` int(10) unsigned NOT NULL DEFAULT 0,
`buyguid` int(10) unsigned NOT NULL DEFAULT 0,
`lastbid` int(10) unsigned NOT NULL DEFAULT 0,
`startbid` int(10) unsigned NOT NULL DEFAULT 0,
`deposit` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `item_guid` (`itemguid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -12,7 +12,7 @@ CREATE TABLE `banned_addons`
`Id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(255) NOT NULL,
`Version` varchar(255) NOT NULL DEFAULT '',
`Timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`Timestamp` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
PRIMARY KEY (`Id`),
UNIQUE KEY `idx_name_ver` (`Name`,`Version`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `calendar_events`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `calendar_events`
(
`id` bigint(20) unsigned NOT NULL DEFAULT '0',
`creator` int(10) unsigned NOT NULL DEFAULT '0',
`id` bigint(20) unsigned NOT NULL DEFAULT 0,
`creator` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`description` varchar(255) NOT NULL DEFAULT '',
`type` tinyint(1) unsigned NOT NULL DEFAULT '4',
`dungeon` int(10) NOT NULL DEFAULT '-1',
`eventtime` int(10) unsigned NOT NULL DEFAULT '0',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
`time2` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(1) unsigned NOT NULL DEFAULT 4,
`dungeon` int(10) NOT NULL DEFAULT -1,
`eventtime` int(10) unsigned NOT NULL DEFAULT 0,
`flags` int(10) unsigned NOT NULL DEFAULT 0,
`time2` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,13 +9,13 @@ DROP TABLE IF EXISTS `calendar_invites`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `calendar_invites`
(
`id` bigint(20) unsigned NOT NULL DEFAULT '0',
`event` bigint(20) unsigned NOT NULL DEFAULT '0',
`invitee` int(10) unsigned NOT NULL DEFAULT '0',
`sender` int(10) unsigned NOT NULL DEFAULT '0',
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
`statustime` int(10) unsigned NOT NULL DEFAULT '0',
`rank` tinyint(1) unsigned NOT NULL DEFAULT '0',
`id` bigint(20) unsigned NOT NULL DEFAULT 0,
`event` bigint(20) unsigned NOT NULL DEFAULT 0,
`invitee` int(10) unsigned NOT NULL DEFAULT 0,
`sender` int(10) unsigned NOT NULL DEFAULT 0,
`status` tinyint(1) unsigned NOT NULL DEFAULT 0,
`statustime` int(10) unsigned NOT NULL DEFAULT 0,
`rank` tinyint(1) unsigned NOT NULL DEFAULT 0,
`text` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -12,8 +12,8 @@ CREATE TABLE `channels`
`channelId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`team` int(10) unsigned NOT NULL,
`announce` tinyint(3) unsigned NOT NULL DEFAULT '1',
`ownership` tinyint(3) unsigned NOT NULL DEFAULT '1',
`announce` tinyint(3) unsigned NOT NULL DEFAULT 1,
`ownership` tinyint(3) unsigned NOT NULL DEFAULT 1,
`password` varchar(32) DEFAULT NULL,
`lastUsed` int(10) unsigned NOT NULL,
PRIMARY KEY (`channelId`)

View file

@ -14,7 +14,7 @@ CREATE TABLE `channels_rights`
`speakdelay` int(10) unsigned NOT NULL,
`joinmessage` varchar(255) NOT NULL DEFAULT '',
`delaymessage` varchar(255) NOT NULL DEFAULT '',
`moderators` text,
`moderators` text DEFAULT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_account_data`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_account_data`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`time` int(10) unsigned NOT NULL DEFAULT 0,
`data` blob NOT NULL,
PRIMARY KEY (`guid`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -11,7 +11,7 @@ CREATE TABLE `character_achievement`
(
`guid` int(10) unsigned NOT NULL,
`achievement` smallint(5) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL DEFAULT '0',
`date` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`achievement`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -12,7 +12,7 @@ CREATE TABLE `character_achievement_progress`
`guid` int(10) unsigned NOT NULL,
`criteria` smallint(5) unsigned NOT NULL,
`counter` int(10) unsigned NOT NULL,
`date` int(10) unsigned NOT NULL DEFAULT '0',
`date` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`criteria`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `character_action`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_action`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`spec` tinyint(3) unsigned NOT NULL DEFAULT '0',
`button` tinyint(3) unsigned NOT NULL DEFAULT '0',
`action` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`spec` tinyint(3) unsigned NOT NULL DEFAULT 0,
`button` tinyint(3) unsigned NOT NULL DEFAULT 0,
`action` int(10) unsigned NOT NULL DEFAULT 0,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`spec`,`button`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_arena_stats`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_arena_stats`
(
`guid` int(10) NOT NULL,
`slot` tinyint(3) NOT NULL,
`matchMakerRating` smallint(5) NOT NULL,
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`slot` tinyint(3) unsigned NOT NULL DEFAULT 0,
`matchMakerRating` smallint(5) unsigned NOT NULL DEFAULT 0,
`maxMMR` smallint(5) NOT NULL,
PRIMARY KEY (`guid`,`slot`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -9,22 +9,22 @@ DROP TABLE IF EXISTS `character_aura`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_aura`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`casterGuid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
`itemGuid` bigint(20) unsigned NOT NULL DEFAULT '0',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
`effectMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`recalculateMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`stackCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
`amount0` int(11) NOT NULL DEFAULT '0',
`amount1` int(11) NOT NULL DEFAULT '0',
`amount2` int(11) NOT NULL DEFAULT '0',
`base_amount0` int(11) NOT NULL DEFAULT '0',
`base_amount1` int(11) NOT NULL DEFAULT '0',
`base_amount2` int(11) NOT NULL DEFAULT '0',
`maxDuration` int(11) NOT NULL DEFAULT '0',
`remainTime` int(11) NOT NULL DEFAULT '0',
`remainCharges` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`casterGuid` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Full Global Unique Identifier',
`itemGuid` bigint(20) unsigned NOT NULL DEFAULT 0,
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0,
`effectMask` tinyint(3) unsigned NOT NULL DEFAULT 0,
`recalculateMask` tinyint(3) unsigned NOT NULL DEFAULT 0,
`stackCount` tinyint(3) unsigned NOT NULL DEFAULT 1,
`amount0` int(11) NOT NULL DEFAULT 0,
`amount1` int(11) NOT NULL DEFAULT 0,
`amount2` int(11) NOT NULL DEFAULT 0,
`base_amount0` int(11) NOT NULL DEFAULT 0,
`base_amount1` int(11) NOT NULL DEFAULT 0,
`base_amount2` int(11) NOT NULL DEFAULT 0,
`maxDuration` int(11) NOT NULL DEFAULT 0,
`remainTime` int(11) NOT NULL DEFAULT 0,
`remainCharges` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`casterGuid`,`itemGuid`,`spell`,`effectMask`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,12 +9,12 @@ DROP TABLE IF EXISTS `character_banned`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_banned`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`bandate` int(10) unsigned NOT NULL DEFAULT '0',
`unbandate` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`bandate` int(10) unsigned NOT NULL DEFAULT 0,
`unbandate` int(10) unsigned NOT NULL DEFAULT 0,
`bannedby` varchar(50) NOT NULL,
`banreason` varchar(255) NOT NULL,
`active` tinyint(3) unsigned NOT NULL DEFAULT '1',
`active` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`guid`,`bandate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Ban List';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,7 +9,7 @@ DROP TABLE IF EXISTS `character_battleground_random`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_battleground_random`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -10,7 +10,7 @@ DROP TABLE IF EXISTS `character_brew_of_the_month`;
CREATE TABLE `character_brew_of_the_month`
(
`guid` int(10) unsigned NOT NULL,
`lastEventId` int(10) unsigned NOT NULL DEFAULT '0',
`lastEventId` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,7 +9,7 @@ DROP TABLE IF EXISTS `character_declinedname`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_declinedname`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`genitive` varchar(15) NOT NULL DEFAULT '',
`dative` varchar(15) NOT NULL DEFAULT '',
`accusative` varchar(15) NOT NULL DEFAULT '',

View file

@ -9,14 +9,14 @@ DROP TABLE IF EXISTS `character_entry_point`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_entry_point`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`joinX` float NOT NULL DEFAULT '0',
`joinY` float NOT NULL DEFAULT '0',
`joinZ` float NOT NULL DEFAULT '0',
`joinO` float NOT NULL DEFAULT '0',
`joinMapId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`taxiPath` text,
`mountSpell` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`joinX` float NOT NULL DEFAULT 0,
`joinY` float NOT NULL DEFAULT 0,
`joinZ` float NOT NULL DEFAULT 0,
`joinO` float NOT NULL DEFAULT 0,
`joinMapId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
`taxiPath` text DEFAULT NULL,
`mountSpell` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,31 +9,31 @@ DROP TABLE IF EXISTS `character_equipmentsets`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_equipmentsets`
(
`guid` int(10) NOT NULL DEFAULT '0',
`guid` int(10) NOT NULL DEFAULT 0,
`setguid` bigint(20) NOT NULL AUTO_INCREMENT,
`setindex` tinyint(3) unsigned NOT NULL DEFAULT '0',
`setindex` tinyint(3) unsigned NOT NULL DEFAULT 0,
`name` varchar(31) NOT NULL,
`iconname` varchar(100) NOT NULL,
`ignore_mask` int(11) unsigned NOT NULL DEFAULT '0',
`item0` int(11) unsigned NOT NULL DEFAULT '0',
`item1` int(11) unsigned NOT NULL DEFAULT '0',
`item2` int(11) unsigned NOT NULL DEFAULT '0',
`item3` int(11) unsigned NOT NULL DEFAULT '0',
`item4` int(11) unsigned NOT NULL DEFAULT '0',
`item5` int(11) unsigned NOT NULL DEFAULT '0',
`item6` int(11) unsigned NOT NULL DEFAULT '0',
`item7` int(11) unsigned NOT NULL DEFAULT '0',
`item8` int(11) unsigned NOT NULL DEFAULT '0',
`item9` int(11) unsigned NOT NULL DEFAULT '0',
`item10` int(11) unsigned NOT NULL DEFAULT '0',
`item11` int(11) unsigned NOT NULL DEFAULT '0',
`item12` int(11) unsigned NOT NULL DEFAULT '0',
`item13` int(11) unsigned NOT NULL DEFAULT '0',
`item14` int(11) unsigned NOT NULL DEFAULT '0',
`item15` int(11) unsigned NOT NULL DEFAULT '0',
`item16` int(11) unsigned NOT NULL DEFAULT '0',
`item17` int(11) unsigned NOT NULL DEFAULT '0',
`item18` int(11) unsigned NOT NULL DEFAULT '0',
`ignore_mask` int(11) unsigned NOT NULL DEFAULT 0,
`item0` int(11) unsigned NOT NULL DEFAULT 0,
`item1` int(11) unsigned NOT NULL DEFAULT 0,
`item2` int(11) unsigned NOT NULL DEFAULT 0,
`item3` int(11) unsigned NOT NULL DEFAULT 0,
`item4` int(11) unsigned NOT NULL DEFAULT 0,
`item5` int(11) unsigned NOT NULL DEFAULT 0,
`item6` int(11) unsigned NOT NULL DEFAULT 0,
`item7` int(11) unsigned NOT NULL DEFAULT 0,
`item8` int(11) unsigned NOT NULL DEFAULT 0,
`item9` int(11) unsigned NOT NULL DEFAULT 0,
`item10` int(11) unsigned NOT NULL DEFAULT 0,
`item11` int(11) unsigned NOT NULL DEFAULT 0,
`item12` int(11) unsigned NOT NULL DEFAULT 0,
`item13` int(11) unsigned NOT NULL DEFAULT 0,
`item14` int(11) unsigned NOT NULL DEFAULT 0,
`item15` int(11) unsigned NOT NULL DEFAULT 0,
`item16` int(11) unsigned NOT NULL DEFAULT 0,
`item17` int(11) unsigned NOT NULL DEFAULT 0,
`item18` int(11) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`setguid`),
UNIQUE KEY `idx_set` (`guid`,`setguid`,`setindex`),
KEY `Idx_setindex` (`setindex`)

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `character_gifts`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_gifts`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`item_guid` int(10) unsigned NOT NULL DEFAULT '0',
`entry` int(10) unsigned NOT NULL DEFAULT '0',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`item_guid` int(10) unsigned NOT NULL DEFAULT 0,
`entry` int(10) unsigned NOT NULL DEFAULT 0,
`flags` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`item_guid`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -10,13 +10,13 @@ DROP TABLE IF EXISTS `character_glyphs`;
CREATE TABLE `character_glyphs`
(
`guid` int(10) unsigned NOT NULL,
`talentGroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
`glyph1` smallint(5) unsigned DEFAULT '0',
`glyph2` smallint(5) unsigned DEFAULT '0',
`glyph3` smallint(5) unsigned DEFAULT '0',
`glyph4` smallint(5) unsigned DEFAULT '0',
`glyph5` smallint(5) unsigned DEFAULT '0',
`glyph6` smallint(5) unsigned DEFAULT '0',
`talentGroup` tinyint(3) unsigned NOT NULL DEFAULT 0,
`glyph1` smallint(5) unsigned DEFAULT 0,
`glyph2` smallint(5) unsigned DEFAULT 0,
`glyph3` smallint(5) unsigned DEFAULT 0,
`glyph4` smallint(5) unsigned DEFAULT 0,
`glyph5` smallint(5) unsigned DEFAULT 0,
`glyph6` smallint(5) unsigned DEFAULT 0,
PRIMARY KEY (`guid`,`talentGroup`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,12 +9,12 @@ DROP TABLE IF EXISTS `character_homebind`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_homebind`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`mapId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`zoneId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Zone Identifier',
`posX` float NOT NULL DEFAULT '0',
`posY` float NOT NULL DEFAULT '0',
`posZ` float NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`mapId` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
`zoneId` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Zone Identifier',
`posX` float NOT NULL DEFAULT 0,
`posY` float NOT NULL DEFAULT 0,
`posZ` float NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_instance`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_instance`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`instance` int(10) unsigned NOT NULL DEFAULT '0',
`permanent` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`instance` int(10) unsigned NOT NULL DEFAULT 0,
`permanent` tinyint(3) unsigned NOT NULL DEFAULT 0,
`extended` tinyint(3) unsigned NOT NULL,
PRIMARY KEY (`guid`,`instance`),
KEY `instance` (`instance`)

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `character_inventory`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_inventory`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`bag` int(10) unsigned NOT NULL DEFAULT '0',
`slot` tinyint(3) unsigned NOT NULL DEFAULT '0',
`item` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item Global Unique Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`bag` int(10) unsigned NOT NULL DEFAULT 0,
`slot` tinyint(3) unsigned NOT NULL DEFAULT 0,
`item` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Item Global Unique Identifier',
PRIMARY KEY (`item`),
UNIQUE KEY `guid` (`guid`,`bag`,`slot`),
KEY `idx_guid` (`guid`)

View file

@ -9,23 +9,23 @@ DROP TABLE IF EXISTS `character_pet`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_pet`
(
`id` int(10) unsigned NOT NULL DEFAULT '0',
`entry` int(10) unsigned NOT NULL DEFAULT '0',
`owner` int(10) unsigned NOT NULL DEFAULT '0',
`modelid` int(10) unsigned DEFAULT '0',
`CreatedBySpell` mediumint(8) unsigned NOT NULL DEFAULT '0',
`PetType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level` smallint(5) unsigned NOT NULL DEFAULT '1',
`exp` int(10) unsigned NOT NULL DEFAULT '0',
`Reactstate` tinyint(3) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0,
`entry` int(10) unsigned NOT NULL DEFAULT 0,
`owner` int(10) unsigned NOT NULL DEFAULT 0,
`modelid` int(10) unsigned DEFAULT 0,
`CreatedBySpell` mediumint(8) unsigned NOT NULL DEFAULT 0,
`PetType` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level` smallint(5) unsigned NOT NULL DEFAULT 1,
`exp` int(10) unsigned NOT NULL DEFAULT 0,
`Reactstate` tinyint(3) unsigned NOT NULL DEFAULT 0,
`name` varchar(21) NOT NULL DEFAULT 'Pet',
`renamed` tinyint(3) unsigned NOT NULL DEFAULT '0',
`slot` tinyint(3) unsigned NOT NULL DEFAULT '0',
`curhealth` int(10) unsigned NOT NULL DEFAULT '1',
`curmana` int(10) unsigned NOT NULL DEFAULT '0',
`curhappiness` int(10) unsigned NOT NULL DEFAULT '0',
`savetime` int(10) unsigned NOT NULL DEFAULT '0',
`abdata` text,
`renamed` tinyint(3) unsigned NOT NULL DEFAULT 0,
`slot` tinyint(3) unsigned NOT NULL DEFAULT 0,
`curhealth` int(10) unsigned NOT NULL DEFAULT 1,
`curmana` int(10) unsigned NOT NULL DEFAULT 0,
`curhappiness` int(10) unsigned NOT NULL DEFAULT 0,
`savetime` int(10) unsigned NOT NULL DEFAULT 0,
`abdata` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `owner` (`owner`),
KEY `idx_slot` (`slot`)

View file

@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `character_pet_declinedname`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_pet_declinedname`
(
`id` int(10) unsigned NOT NULL DEFAULT '0',
`owner` int(10) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0,
`owner` int(10) unsigned NOT NULL DEFAULT 0,
`genitive` varchar(12) NOT NULL DEFAULT '',
`dative` varchar(12) NOT NULL DEFAULT '',
`accusative` varchar(12) NOT NULL DEFAULT '',

View file

@ -9,22 +9,22 @@ DROP TABLE IF EXISTS `character_queststatus`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`status` tinyint(3) unsigned NOT NULL DEFAULT '0',
`explored` tinyint(3) unsigned NOT NULL DEFAULT '0',
`timer` int(10) unsigned NOT NULL DEFAULT '0',
`mobcount1` smallint(5) unsigned NOT NULL DEFAULT '0',
`mobcount2` smallint(5) unsigned NOT NULL DEFAULT '0',
`mobcount3` smallint(5) unsigned NOT NULL DEFAULT '0',
`mobcount4` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount1` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount2` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount3` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount4` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount5` smallint(5) unsigned NOT NULL DEFAULT '0',
`itemcount6` smallint(5) unsigned NOT NULL DEFAULT '0',
`playercount` smallint(5) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
`status` tinyint(3) unsigned NOT NULL DEFAULT 0,
`explored` tinyint(3) unsigned NOT NULL DEFAULT 0,
`timer` int(10) unsigned NOT NULL DEFAULT 0,
`mobcount1` smallint(5) unsigned NOT NULL DEFAULT 0,
`mobcount2` smallint(5) unsigned NOT NULL DEFAULT 0,
`mobcount3` smallint(5) unsigned NOT NULL DEFAULT 0,
`mobcount4` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount1` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount2` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount3` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount4` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount5` smallint(5) unsigned NOT NULL DEFAULT 0,
`itemcount6` smallint(5) unsigned NOT NULL DEFAULT 0,
`playercount` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`quest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_queststatus_daily`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_daily`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
`time` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `character_queststatus_monthly`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_monthly`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_queststatus_rewarded`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_rewarded`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`active` tinyint(3) unsigned NOT NULL DEFAULT '1',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
`active` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`guid`,`quest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_queststatus_seasonal`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_seasonal`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`event` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Event Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
`event` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Event Identifier',
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `character_queststatus_weekly`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_queststatus_weekly`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`quest` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Quest Identifier',
PRIMARY KEY (`guid`,`quest`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `character_reputation`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_reputation`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`faction` smallint(5) unsigned NOT NULL DEFAULT '0',
`standing` int(11) NOT NULL DEFAULT '0',
`flags` smallint(5) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`faction` smallint(5) unsigned NOT NULL DEFAULT 0,
`standing` int(11) NOT NULL DEFAULT 0,
`flags` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`faction`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_social`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_social`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`friend` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Global Unique Identifier',
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Friend Flags',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
`friend` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Friend Global Unique Identifier',
`flags` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Friend Flags',
`note` varchar(48) NOT NULL DEFAULT '' COMMENT 'Friend Note',
PRIMARY KEY (`guid`,`friend`,`flags`),
KEY `friend` (`friend`)

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `character_spell`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_spell`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
`specMask` tinyint(3) unsigned NOT NULL DEFAULT '1',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0 COMMENT 'Spell Identifier',
`specMask` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `character_spell_cooldown`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_spell_cooldown`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
`item` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Item Identifier',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`needSend` tinyint(3) unsigned NOT NULL DEFAULT '1',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier, Low part',
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0 COMMENT 'Spell Identifier',
`item` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Item Identifier',
`time` int(10) unsigned NOT NULL DEFAULT 0,
`needSend` tinyint(3) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,37 +9,37 @@ DROP TABLE IF EXISTS `character_stats`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `character_stats`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
`maxhealth` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower1` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower2` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower3` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower4` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower5` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower6` int(10) unsigned NOT NULL DEFAULT '0',
`maxpower7` int(10) unsigned NOT NULL DEFAULT '0',
`strength` int(10) unsigned NOT NULL DEFAULT '0',
`agility` int(10) unsigned NOT NULL DEFAULT '0',
`stamina` int(10) unsigned NOT NULL DEFAULT '0',
`intellect` int(10) unsigned NOT NULL DEFAULT '0',
`spirit` int(10) unsigned NOT NULL DEFAULT '0',
`armor` int(10) unsigned NOT NULL DEFAULT '0',
`resHoly` int(10) unsigned NOT NULL DEFAULT '0',
`resFire` int(10) unsigned NOT NULL DEFAULT '0',
`resNature` int(10) unsigned NOT NULL DEFAULT '0',
`resFrost` int(10) unsigned NOT NULL DEFAULT '0',
`resShadow` int(10) unsigned NOT NULL DEFAULT '0',
`resArcane` int(10) unsigned NOT NULL DEFAULT '0',
`blockPct` float unsigned NOT NULL DEFAULT '0',
`dodgePct` float unsigned NOT NULL DEFAULT '0',
`parryPct` float unsigned NOT NULL DEFAULT '0',
`critPct` float unsigned NOT NULL DEFAULT '0',
`rangedCritPct` float unsigned NOT NULL DEFAULT '0',
`spellCritPct` float unsigned NOT NULL DEFAULT '0',
`attackPower` int(10) unsigned NOT NULL DEFAULT '0',
`rangedAttackPower` int(10) unsigned NOT NULL DEFAULT '0',
`spellPower` int(10) unsigned NOT NULL DEFAULT '0',
`resilience` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier, Low part',
`maxhealth` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower1` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower2` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower3` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower4` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower5` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower6` int(10) unsigned NOT NULL DEFAULT 0,
`maxpower7` int(10) unsigned NOT NULL DEFAULT 0,
`strength` int(10) unsigned NOT NULL DEFAULT 0,
`agility` int(10) unsigned NOT NULL DEFAULT 0,
`stamina` int(10) unsigned NOT NULL DEFAULT 0,
`intellect` int(10) unsigned NOT NULL DEFAULT 0,
`spirit` int(10) unsigned NOT NULL DEFAULT 0,
`armor` int(10) unsigned NOT NULL DEFAULT 0,
`resHoly` int(10) unsigned NOT NULL DEFAULT 0,
`resFire` int(10) unsigned NOT NULL DEFAULT 0,
`resNature` int(10) unsigned NOT NULL DEFAULT 0,
`resFrost` int(10) unsigned NOT NULL DEFAULT 0,
`resShadow` int(10) unsigned NOT NULL DEFAULT 0,
`resArcane` int(10) unsigned NOT NULL DEFAULT 0,
`blockPct` float unsigned NOT NULL DEFAULT 0,
`dodgePct` float unsigned NOT NULL DEFAULT 0,
`parryPct` float unsigned NOT NULL DEFAULT 0,
`critPct` float unsigned NOT NULL DEFAULT 0,
`rangedCritPct` float unsigned NOT NULL DEFAULT 0,
`spellCritPct` float unsigned NOT NULL DEFAULT 0,
`attackPower` int(10) unsigned NOT NULL DEFAULT 0,
`rangedAttackPower` int(10) unsigned NOT NULL DEFAULT 0,
`spellPower` int(10) unsigned NOT NULL DEFAULT 0,
`resilience` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -11,7 +11,7 @@ CREATE TABLE `character_talent`
(
`guid` int(10) unsigned NOT NULL,
`spell` mediumint(8) unsigned NOT NULL,
`specMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`specMask` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,79 +9,80 @@ DROP TABLE IF EXISTS `characters`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `characters`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`account` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Account Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`account` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Account Identifier',
`name` varchar(12) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
`race` tinyint(3) unsigned NOT NULL DEFAULT '0',
`class` tinyint(3) unsigned NOT NULL DEFAULT '0',
`gender` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level` tinyint(3) unsigned NOT NULL DEFAULT '0',
`xp` int(10) unsigned NOT NULL DEFAULT '0',
`money` int(10) unsigned NOT NULL DEFAULT '0',
`skin` tinyint(3) unsigned NOT NULL DEFAULT '0',
`face` tinyint(3) unsigned NOT NULL DEFAULT '0',
`hairStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`hairColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`facialStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`bankSlots` tinyint(3) unsigned NOT NULL DEFAULT '0',
`restState` tinyint(3) unsigned NOT NULL DEFAULT '0',
`playerFlags` int(10) unsigned NOT NULL DEFAULT '0',
`position_x` float NOT NULL DEFAULT '0',
`position_y` float NOT NULL DEFAULT '0',
`position_z` float NOT NULL DEFAULT '0',
`map` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`instance_id` int(10) unsigned NOT NULL DEFAULT '0',
`instance_mode_mask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`orientation` float NOT NULL DEFAULT '0',
`race` tinyint(3) unsigned NOT NULL DEFAULT 0,
`class` tinyint(3) unsigned NOT NULL DEFAULT 0,
`gender` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level` tinyint(3) unsigned NOT NULL DEFAULT 0,
`xp` int(10) unsigned NOT NULL DEFAULT 0,
`money` int(10) unsigned NOT NULL DEFAULT 0,
`skin` tinyint(3) unsigned NOT NULL DEFAULT 0,
`face` tinyint(3) unsigned NOT NULL DEFAULT 0,
`hairStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`hairColor` tinyint(3) unsigned NOT NULL DEFAULT 0,
`facialStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`bankSlots` tinyint(3) unsigned NOT NULL DEFAULT 0,
`restState` tinyint(3) unsigned NOT NULL DEFAULT 0,
`playerFlags` int(10) unsigned NOT NULL DEFAULT 0,
`position_x` float NOT NULL DEFAULT 0,
`position_y` float NOT NULL DEFAULT 0,
`position_z` float NOT NULL DEFAULT 0,
`map` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
`instance_id` int(10) unsigned NOT NULL DEFAULT 0,
`instance_mode_mask` tinyint(3) unsigned NOT NULL DEFAULT 0,
`orientation` float NOT NULL DEFAULT 0,
`taximask` text NOT NULL,
`online` tinyint(3) unsigned NOT NULL DEFAULT '0',
`cinematic` tinyint(3) unsigned NOT NULL DEFAULT '0',
`totaltime` int(10) unsigned NOT NULL DEFAULT '0',
`leveltime` int(10) unsigned NOT NULL DEFAULT '0',
`logout_time` int(10) unsigned NOT NULL DEFAULT '0',
`is_logout_resting` tinyint(3) unsigned NOT NULL DEFAULT '0',
`rest_bonus` float NOT NULL DEFAULT '0',
`resettalents_cost` int(10) unsigned NOT NULL DEFAULT '0',
`resettalents_time` int(10) unsigned NOT NULL DEFAULT '0',
`trans_x` float NOT NULL DEFAULT '0',
`trans_y` float NOT NULL DEFAULT '0',
`trans_z` float NOT NULL DEFAULT '0',
`trans_o` float NOT NULL DEFAULT '0',
`transguid` mediumint(8) unsigned NOT NULL DEFAULT '0',
`extra_flags` smallint(5) unsigned NOT NULL DEFAULT '0',
`stable_slots` tinyint(3) unsigned NOT NULL DEFAULT '0',
`at_login` smallint(5) unsigned NOT NULL DEFAULT '0',
`zone` smallint(5) unsigned NOT NULL DEFAULT '0',
`death_expire_time` int(10) unsigned NOT NULL DEFAULT '0',
`taxi_path` text,
`arenaPoints` int(10) unsigned NOT NULL DEFAULT '0',
`totalHonorPoints` int(10) unsigned NOT NULL DEFAULT '0',
`todayHonorPoints` int(10) unsigned NOT NULL DEFAULT '0',
`yesterdayHonorPoints` int(10) unsigned NOT NULL DEFAULT '0',
`totalKills` int(10) unsigned NOT NULL DEFAULT '0',
`todayKills` smallint(5) unsigned NOT NULL DEFAULT '0',
`yesterdayKills` smallint(5) unsigned NOT NULL DEFAULT '0',
`chosenTitle` int(10) unsigned NOT NULL DEFAULT '0',
`knownCurrencies` bigint(20) unsigned NOT NULL DEFAULT '0',
`watchedFaction` int(10) unsigned NOT NULL DEFAULT '0',
`drunk` tinyint(3) unsigned NOT NULL DEFAULT '0',
`health` int(10) unsigned NOT NULL DEFAULT '0',
`power1` int(10) unsigned NOT NULL DEFAULT '0',
`power2` int(10) unsigned NOT NULL DEFAULT '0',
`power3` int(10) unsigned NOT NULL DEFAULT '0',
`power4` int(10) unsigned NOT NULL DEFAULT '0',
`power5` int(10) unsigned NOT NULL DEFAULT '0',
`power6` int(10) unsigned NOT NULL DEFAULT '0',
`power7` int(10) unsigned NOT NULL DEFAULT '0',
`latency` mediumint(8) unsigned NOT NULL DEFAULT '0',
`talentGroupsCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
`activeTalentGroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
`exploredZones` longtext,
`equipmentCache` longtext,
`ammoId` int(10) unsigned NOT NULL DEFAULT '0',
`knownTitles` longtext,
`actionBars` tinyint(3) unsigned NOT NULL DEFAULT '0',
`grantableLevels` tinyint(3) unsigned NOT NULL DEFAULT '0',
`online` tinyint(3) unsigned NOT NULL DEFAULT 0,
`cinematic` tinyint(3) unsigned NOT NULL DEFAULT 0,
`totaltime` int(10) unsigned NOT NULL DEFAULT 0,
`leveltime` int(10) unsigned NOT NULL DEFAULT 0,
`logout_time` int(10) unsigned NOT NULL DEFAULT 0,
`is_logout_resting` tinyint(3) unsigned NOT NULL DEFAULT 0,
`rest_bonus` float NOT NULL DEFAULT 0,
`resettalents_cost` int(10) unsigned NOT NULL DEFAULT 0,
`resettalents_time` int(10) unsigned NOT NULL DEFAULT 0,
`trans_x` float NOT NULL DEFAULT 0,
`trans_y` float NOT NULL DEFAULT 0,
`trans_z` float NOT NULL DEFAULT 0,
`trans_o` float NOT NULL DEFAULT 0,
`transguid` mediumint(8) unsigned NOT NULL DEFAULT 0,
`extra_flags` smallint(5) unsigned NOT NULL DEFAULT 0,
`stable_slots` tinyint(3) unsigned NOT NULL DEFAULT 0,
`at_login` smallint(5) unsigned NOT NULL DEFAULT 0,
`zone` smallint(5) unsigned NOT NULL DEFAULT 0,
`death_expire_time` int(10) unsigned NOT NULL DEFAULT 0,
`taxi_path` text DEFAULT NULL,
`arenaPoints` int(10) unsigned NOT NULL DEFAULT 0,
`totalHonorPoints` int(10) unsigned NOT NULL DEFAULT 0,
`todayHonorPoints` int(10) unsigned NOT NULL DEFAULT 0,
`yesterdayHonorPoints` int(10) unsigned NOT NULL DEFAULT 0,
`totalKills` int(10) unsigned NOT NULL DEFAULT 0,
`todayKills` smallint(5) unsigned NOT NULL DEFAULT 0,
`yesterdayKills` smallint(5) unsigned NOT NULL DEFAULT 0,
`chosenTitle` int(10) unsigned NOT NULL DEFAULT 0,
`knownCurrencies` bigint(20) unsigned NOT NULL DEFAULT 0,
`watchedFaction` int(10) unsigned NOT NULL DEFAULT 0,
`drunk` tinyint(3) unsigned NOT NULL DEFAULT 0,
`health` int(10) unsigned NOT NULL DEFAULT 0,
`power1` int(10) unsigned NOT NULL DEFAULT 0,
`power2` int(10) unsigned NOT NULL DEFAULT 0,
`power3` int(10) unsigned NOT NULL DEFAULT 0,
`power4` int(10) unsigned NOT NULL DEFAULT 0,
`power5` int(10) unsigned NOT NULL DEFAULT 0,
`power6` int(10) unsigned NOT NULL DEFAULT 0,
`power7` int(10) unsigned NOT NULL DEFAULT 0,
`latency` mediumint(8) unsigned NOT NULL DEFAULT 0,
`talentGroupsCount` tinyint(3) unsigned NOT NULL DEFAULT 1,
`activeTalentGroup` tinyint(3) unsigned NOT NULL DEFAULT 0,
`exploredZones` longtext DEFAULT NULL,
`equipmentCache` longtext DEFAULT NULL,
`ammoId` int(10) unsigned NOT NULL DEFAULT 0,
`knownTitles` longtext DEFAULT NULL,
`actionBars` tinyint(3) unsigned NOT NULL DEFAULT 0,
`grantableLevels` tinyint(3) unsigned NOT NULL DEFAULT 0,
`creation_date` timestamp NOT NULL DEFAULT current_timestamp(),
`deleteInfos_Account` int(10) unsigned DEFAULT NULL,
`deleteInfos_Name` varchar(12) DEFAULT NULL,
`deleteDate` int(10) unsigned DEFAULT NULL,

View file

@ -9,24 +9,24 @@ DROP TABLE IF EXISTS `corpse`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `corpse`
(
`corpseGuid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`posX` float NOT NULL DEFAULT '0',
`posY` float NOT NULL DEFAULT '0',
`posZ` float NOT NULL DEFAULT '0',
`orientation` float NOT NULL DEFAULT '0',
`mapId` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
`phaseMask` int(10) unsigned NOT NULL DEFAULT '1',
`displayId` int(10) unsigned NOT NULL DEFAULT '0',
`corpseGuid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
`posX` float NOT NULL DEFAULT 0,
`posY` float NOT NULL DEFAULT 0,
`posZ` float NOT NULL DEFAULT 0,
`orientation` float NOT NULL DEFAULT 0,
`mapId` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Map Identifier',
`phaseMask` int(10) unsigned NOT NULL DEFAULT 1,
`displayId` int(10) unsigned NOT NULL DEFAULT 0,
`itemCache` text NOT NULL,
`bytes1` int(10) unsigned NOT NULL DEFAULT '0',
`bytes2` int(10) unsigned NOT NULL DEFAULT '0',
`guildId` int(10) unsigned NOT NULL DEFAULT '0',
`flags` tinyint(3) unsigned NOT NULL DEFAULT '0',
`dynFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`corpseType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
`bytes1` int(10) unsigned NOT NULL DEFAULT 0,
`bytes2` int(10) unsigned NOT NULL DEFAULT 0,
`guildId` int(10) unsigned NOT NULL DEFAULT 0,
`flags` tinyint(3) unsigned NOT NULL DEFAULT 0,
`dynFlags` tinyint(3) unsigned NOT NULL DEFAULT 0,
`time` int(10) unsigned NOT NULL DEFAULT 0,
`corpseType` tinyint(3) unsigned NOT NULL DEFAULT 0,
`instanceId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance Identifier',
PRIMARY KEY (`corpseGuid`),
KEY `idx_type` (`corpseType`),
KEY `idx_instance` (`instanceId`),

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `creature_respawn`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `creature_respawn`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`respawnTime` int(10) unsigned NOT NULL DEFAULT '0',
`mapId` smallint(10) unsigned NOT NULL DEFAULT '0',
`instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`respawnTime` int(10) unsigned NOT NULL DEFAULT 0,
`mapId` smallint(10) unsigned NOT NULL DEFAULT 0,
`instanceId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance Identifier',
PRIMARY KEY (`guid`,`instanceId`),
KEY `idx_instance` (`instanceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Grid Loading System';

View file

@ -10,8 +10,8 @@ DROP TABLE IF EXISTS `game_event_condition_save`;
CREATE TABLE `game_event_condition_save`
(
`eventEntry` tinyint(3) unsigned NOT NULL,
`condition_id` int(10) unsigned NOT NULL DEFAULT '0',
`done` float DEFAULT '0',
`condition_id` int(10) unsigned NOT NULL DEFAULT 0,
`done` float DEFAULT 0,
PRIMARY KEY (`eventEntry`,`condition_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -10,8 +10,8 @@ DROP TABLE IF EXISTS `game_event_save`;
CREATE TABLE `game_event_save`
(
`eventEntry` tinyint(3) unsigned NOT NULL,
`state` tinyint(3) unsigned NOT NULL DEFAULT '1',
`next_start` int(10) unsigned NOT NULL DEFAULT '0',
`state` tinyint(3) unsigned NOT NULL DEFAULT 1,
`next_start` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`eventEntry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `gameobject_respawn`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `gameobject_respawn`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`respawnTime` int(10) unsigned NOT NULL DEFAULT '0',
`mapId` smallint(10) unsigned NOT NULL DEFAULT '0',
`instanceId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Instance Identifier',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`respawnTime` int(10) unsigned NOT NULL DEFAULT 0,
`mapId` smallint(10) unsigned NOT NULL DEFAULT 0,
`instanceId` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Instance Identifier',
PRIMARY KEY (`guid`,`instanceId`),
KEY `idx_instance` (`instanceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Grid Loading System';

View file

@ -10,8 +10,8 @@ DROP TABLE IF EXISTS `gm_subsurvey`;
CREATE TABLE `gm_subsurvey`
(
`surveyId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`questionId` int(10) unsigned NOT NULL DEFAULT '0',
`answer` int(10) unsigned NOT NULL DEFAULT '0',
`questionId` int(10) unsigned NOT NULL DEFAULT 0,
`answer` int(10) unsigned NOT NULL DEFAULT 0,
`answerComment` text NOT NULL,
PRIMARY KEY (`surveyId`,`questionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -10,10 +10,10 @@ DROP TABLE IF EXISTS `gm_survey`;
CREATE TABLE `gm_survey`
(
`surveyId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`mainSurvey` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`mainSurvey` int(10) unsigned NOT NULL DEFAULT 0,
`comment` longtext NOT NULL,
`createTime` int(10) unsigned NOT NULL DEFAULT '0',
`createTime` int(10) unsigned NOT NULL DEFAULT 0,
`maxMMR` smallint(5) NOT NULL,
PRIMARY KEY (`surveyId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';

View file

@ -10,25 +10,25 @@ DROP TABLE IF EXISTS `gm_ticket`;
CREATE TABLE `gm_ticket`
(
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '0 open, 1 closed, 2 character deleted',
`playerGuid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier of ticket creator',
`type` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT '0 open, 1 closed, 2 character deleted',
`playerGuid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier of ticket creator',
`name` varchar(12) NOT NULL COMMENT 'Name of ticket creator',
`description` text NOT NULL,
`createTime` int(10) unsigned NOT NULL DEFAULT '0',
`mapId` smallint(5) unsigned NOT NULL DEFAULT '0',
`posX` float NOT NULL DEFAULT '0',
`posY` float NOT NULL DEFAULT '0',
`posZ` float NOT NULL DEFAULT '0',
`lastModifiedTime` int(10) unsigned NOT NULL DEFAULT '0',
`closedBy` int(10) unsigned NOT NULL DEFAULT '0',
`assignedTo` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of admin to whom ticket is assigned',
`createTime` int(10) unsigned NOT NULL DEFAULT 0,
`mapId` smallint(5) unsigned NOT NULL DEFAULT 0,
`posX` float NOT NULL DEFAULT 0,
`posY` float NOT NULL DEFAULT 0,
`posZ` float NOT NULL DEFAULT 0,
`lastModifiedTime` int(10) unsigned NOT NULL DEFAULT 0,
`closedBy` int(10) unsigned NOT NULL DEFAULT 0,
`assignedTo` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'GUID of admin to whom ticket is assigned',
`comment` text NOT NULL,
`response` text NOT NULL,
`completed` tinyint(3) unsigned NOT NULL DEFAULT '0',
`escalated` tinyint(3) unsigned NOT NULL DEFAULT '0',
`viewed` tinyint(3) unsigned NOT NULL DEFAULT '0',
`needMoreHelp` tinyint(3) unsigned NOT NULL DEFAULT '0',
`resolvedBy` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'GUID of GM who resolved the ticket',
`completed` tinyint(3) unsigned NOT NULL DEFAULT 0,
`escalated` tinyint(3) unsigned NOT NULL DEFAULT 0,
`viewed` tinyint(3) unsigned NOT NULL DEFAULT 0,
`needMoreHelp` tinyint(3) unsigned NOT NULL DEFAULT 0,
`resolvedBy` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'GUID of GM who resolved the ticket',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -11,9 +11,9 @@ CREATE TABLE `group_member`
(
`guid` int(10) unsigned NOT NULL,
`memberGuid` int(10) unsigned NOT NULL,
`memberFlags` tinyint(3) unsigned NOT NULL DEFAULT '0',
`subgroup` tinyint(3) unsigned NOT NULL DEFAULT '0',
`roles` tinyint(3) unsigned NOT NULL DEFAULT '0',
`memberFlags` tinyint(3) unsigned NOT NULL DEFAULT 0,
`subgroup` tinyint(3) unsigned NOT NULL DEFAULT 0,
`roles` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`memberGuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Groups';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -23,8 +23,8 @@ CREATE TABLE `groups`
`icon7` int(10) unsigned NOT NULL,
`icon8` int(10) unsigned NOT NULL,
`groupType` tinyint(3) unsigned NOT NULL,
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`raidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT 0,
`raidDifficulty` tinyint(3) unsigned NOT NULL DEFAULT 0,
`masterLooterGuid` int(10) unsigned NOT NULL,
PRIMARY KEY (`guid`),
KEY `leaderGuid` (`leaderGuid`)

View file

@ -9,18 +9,18 @@ DROP TABLE IF EXISTS `guild`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
`guildid` int(10) unsigned NOT NULL DEFAULT 0,
`name` varchar(24) NOT NULL DEFAULT '',
`leaderguid` int(10) unsigned NOT NULL DEFAULT '0',
`EmblemStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`EmblemColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`BorderStyle` tinyint(3) unsigned NOT NULL DEFAULT '0',
`BorderColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`BackgroundColor` tinyint(3) unsigned NOT NULL DEFAULT '0',
`leaderguid` int(10) unsigned NOT NULL DEFAULT 0,
`EmblemStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`EmblemColor` tinyint(3) unsigned NOT NULL DEFAULT 0,
`BorderStyle` tinyint(3) unsigned NOT NULL DEFAULT 0,
`BorderColor` tinyint(3) unsigned NOT NULL DEFAULT 0,
`BackgroundColor` tinyint(3) unsigned NOT NULL DEFAULT 0,
`info` varchar(500) NOT NULL DEFAULT '',
`motd` varchar(128) NOT NULL DEFAULT '',
`createdate` int(10) unsigned NOT NULL DEFAULT '0',
`BankMoney` bigint(20) unsigned NOT NULL DEFAULT '0',
`createdate` int(10) unsigned NOT NULL DEFAULT 0,
`BankMoney` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `guild_bank_eventlog`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_eventlog`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Guild Identificator',
`LogGuid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Log record identificator - auxiliary column',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Guild bank TabId',
`EventType` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Event type',
`PlayerGuid` int(10) unsigned NOT NULL DEFAULT '0',
`ItemOrMoney` int(10) unsigned NOT NULL DEFAULT '0',
`ItemStackCount` smallint(5) unsigned NOT NULL DEFAULT '0',
`DestTabId` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Destination Tab Id',
`TimeStamp` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Event UNIX time',
`guildid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Guild Identificator',
`LogGuid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Log record identificator - auxiliary column',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Guild bank TabId',
`EventType` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Event type',
`PlayerGuid` int(10) unsigned NOT NULL DEFAULT 0,
`ItemOrMoney` int(10) unsigned NOT NULL DEFAULT 0,
`ItemStackCount` smallint(5) unsigned NOT NULL DEFAULT 0,
`DestTabId` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Destination Tab Id',
`TimeStamp` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Event UNIX time',
PRIMARY KEY (`guildid`,`LogGuid`,`TabId`),
KEY `guildid_key` (`guildid`),
KEY `Idx_PlayerGuid` (`PlayerGuid`),

View file

@ -9,10 +9,10 @@ DROP TABLE IF EXISTS `guild_bank_item`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_item`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT '0',
`SlotId` tinyint(3) unsigned NOT NULL DEFAULT '0',
`item_guid` int(10) unsigned NOT NULL DEFAULT '0',
`guildid` int(10) unsigned NOT NULL DEFAULT 0,
`TabId` tinyint(3) unsigned NOT NULL DEFAULT 0,
`SlotId` tinyint(3) unsigned NOT NULL DEFAULT 0,
`item_guid` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guildid`,`TabId`,`SlotId`),
KEY `guildid_key` (`guildid`),
KEY `Idx_item_guid` (`item_guid`)

View file

@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `guild_bank_right`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_right`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT '0',
`rid` tinyint(3) unsigned NOT NULL DEFAULT '0',
`gbright` tinyint(3) unsigned NOT NULL DEFAULT '0',
`SlotPerDay` int(10) unsigned NOT NULL DEFAULT '0',
`guildid` int(10) unsigned NOT NULL DEFAULT 0,
`TabId` tinyint(3) unsigned NOT NULL DEFAULT 0,
`rid` tinyint(3) unsigned NOT NULL DEFAULT 0,
`gbright` tinyint(3) unsigned NOT NULL DEFAULT 0,
`SlotPerDay` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guildid`,`TabId`,`rid`),
KEY `guildid_key` (`guildid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `guild_bank_tab`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_bank_tab`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
`TabId` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guildid` int(10) unsigned NOT NULL DEFAULT 0,
`TabId` tinyint(3) unsigned NOT NULL DEFAULT 0,
`TabName` varchar(16) NOT NULL DEFAULT '',
`TabIcon` varchar(100) NOT NULL DEFAULT '',
`TabText` varchar(500) DEFAULT NULL,

View file

@ -10,13 +10,13 @@ DROP TABLE IF EXISTS `guild_member_withdraw`;
CREATE TABLE `guild_member_withdraw`
(
`guid` int(10) unsigned NOT NULL,
`tab0` int(10) unsigned NOT NULL DEFAULT '0',
`tab1` int(10) unsigned NOT NULL DEFAULT '0',
`tab2` int(10) unsigned NOT NULL DEFAULT '0',
`tab3` int(10) unsigned NOT NULL DEFAULT '0',
`tab4` int(10) unsigned NOT NULL DEFAULT '0',
`tab5` int(10) unsigned NOT NULL DEFAULT '0',
`money` int(10) unsigned NOT NULL DEFAULT '0',
`tab0` int(10) unsigned NOT NULL DEFAULT 0,
`tab1` int(10) unsigned NOT NULL DEFAULT 0,
`tab2` int(10) unsigned NOT NULL DEFAULT 0,
`tab3` int(10) unsigned NOT NULL DEFAULT 0,
`tab4` int(10) unsigned NOT NULL DEFAULT 0,
`tab5` int(10) unsigned NOT NULL DEFAULT 0,
`money` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild Member Daily Withdraws';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `guild_rank`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `guild_rank`
(
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
`guildid` int(10) unsigned NOT NULL DEFAULT 0,
`rid` tinyint(3) unsigned NOT NULL,
`rname` varchar(20) NOT NULL DEFAULT '',
`rights` mediumint(8) unsigned NOT NULL DEFAULT '0',
`BankMoneyPerDay` int(10) unsigned NOT NULL DEFAULT '0',
`rights` mediumint(8) unsigned NOT NULL DEFAULT 0,
`BankMoneyPerDay` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guildid`,`rid`),
KEY `Idx_rid` (`rid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';

View file

@ -9,11 +9,11 @@ DROP TABLE IF EXISTS `instance`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `instance`
(
`id` int(10) unsigned NOT NULL DEFAULT '0',
`map` smallint(5) unsigned NOT NULL DEFAULT '0',
`resettime` int(10) unsigned NOT NULL DEFAULT '0',
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`completedEncounters` int(10) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0,
`map` smallint(5) unsigned NOT NULL DEFAULT 0,
`resettime` int(10) unsigned NOT NULL DEFAULT 0,
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT 0,
`completedEncounters` int(10) unsigned NOT NULL DEFAULT 0,
`data` tinytext NOT NULL,
PRIMARY KEY (`id`),
KEY `map` (`map`),

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `instance_reset`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `instance_reset`
(
`mapid` smallint(5) unsigned NOT NULL DEFAULT '0',
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`resettime` int(10) unsigned NOT NULL DEFAULT '0',
`mapid` smallint(5) unsigned NOT NULL DEFAULT 0,
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT 0,
`resettime` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`mapid`,`difficulty`),
KEY `difficulty` (`difficulty`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View file

@ -9,20 +9,20 @@ DROP TABLE IF EXISTS `item_instance`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_instance`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`itemEntry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`owner_guid` int(10) unsigned NOT NULL DEFAULT '0',
`creatorGuid` int(10) unsigned NOT NULL DEFAULT '0',
`giftCreatorGuid` int(10) unsigned NOT NULL DEFAULT '0',
`count` int(10) unsigned NOT NULL DEFAULT '1',
`duration` int(10) NOT NULL DEFAULT '0',
`charges` tinytext,
`flags` mediumint(8) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`itemEntry` mediumint(8) unsigned NOT NULL DEFAULT 0,
`owner_guid` int(10) unsigned NOT NULL DEFAULT 0,
`creatorGuid` int(10) unsigned NOT NULL DEFAULT 0,
`giftCreatorGuid` int(10) unsigned NOT NULL DEFAULT 0,
`count` int(10) unsigned NOT NULL DEFAULT 1,
`duration` int(10) NOT NULL DEFAULT 0,
`charges` tinytext DEFAULT NULL,
`flags` mediumint(8) unsigned NOT NULL DEFAULT 0,
`enchantments` text NOT NULL,
`randomPropertyId` smallint(5) NOT NULL DEFAULT '0',
`durability` smallint(5) unsigned NOT NULL DEFAULT '0',
`playedTime` int(10) unsigned NOT NULL DEFAULT '0',
`text` text,
`randomPropertyId` smallint(5) NOT NULL DEFAULT 0,
`durability` smallint(5) unsigned NOT NULL DEFAULT 0,
`playedTime` int(10) unsigned NOT NULL DEFAULT 0,
`text` text DEFAULT NULL,
PRIMARY KEY (`guid`),
KEY `idx_owner_guid` (`owner_guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Item System';

View file

@ -11,8 +11,8 @@ CREATE TABLE `item_refund_instance`
(
`item_guid` int(10) unsigned NOT NULL COMMENT 'Item GUID',
`player_guid` int(10) unsigned NOT NULL COMMENT 'Player GUID',
`paidMoney` int(10) unsigned NOT NULL DEFAULT '0',
`paidExtendedCost` smallint(5) unsigned NOT NULL DEFAULT '0',
`paidMoney` int(10) unsigned NOT NULL DEFAULT 0,
`paidExtendedCost` smallint(5) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`item_guid`,`player_guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Item Refund System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -10,14 +10,14 @@ DROP TABLE IF EXISTS `lag_reports`;
CREATE TABLE `lag_reports`
(
`reportId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`lagType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`mapId` smallint(5) unsigned NOT NULL DEFAULT '0',
`posX` float NOT NULL DEFAULT '0',
`posY` float NOT NULL DEFAULT '0',
`posZ` float NOT NULL DEFAULT '0',
`latency` int(10) unsigned NOT NULL DEFAULT '0',
`createTime` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0,
`lagType` tinyint(3) unsigned NOT NULL DEFAULT 0,
`mapId` smallint(5) unsigned NOT NULL DEFAULT 0,
`posX` float NOT NULL DEFAULT 0,
`posY` float NOT NULL DEFAULT 0,
`posZ` float NOT NULL DEFAULT 0,
`latency` int(10) unsigned NOT NULL DEFAULT 0,
`createTime` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`reportId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `lfg_data`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `lfg_data`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`dungeon` int(10) unsigned NOT NULL DEFAULT '0',
`state` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`dungeon` int(10) unsigned NOT NULL DEFAULT 0,
`state` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='LFG Data';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,20 +9,20 @@ DROP TABLE IF EXISTS `mail`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail`
(
`id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
`messageType` tinyint(3) unsigned NOT NULL DEFAULT '0',
`stationery` tinyint(3) NOT NULL DEFAULT '41',
`mailTemplateId` smallint(5) unsigned NOT NULL DEFAULT '0',
`sender` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`receiver` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`subject` longtext,
`body` longtext,
`has_items` tinyint(3) unsigned NOT NULL DEFAULT '0',
`expire_time` int(10) unsigned NOT NULL DEFAULT '0',
`deliver_time` int(10) unsigned NOT NULL DEFAULT '0',
`money` int(10) unsigned NOT NULL DEFAULT '0',
`cod` int(10) unsigned NOT NULL DEFAULT '0',
`checked` tinyint(3) unsigned NOT NULL DEFAULT '0',
`id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Identifier',
`messageType` tinyint(3) unsigned NOT NULL DEFAULT 0,
`stationery` tinyint(3) NOT NULL DEFAULT 41,
`mailTemplateId` smallint(5) unsigned NOT NULL DEFAULT 0,
`sender` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
`receiver` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
`subject` longtext DEFAULT NULL,
`body` longtext DEFAULT NULL,
`has_items` tinyint(3) unsigned NOT NULL DEFAULT 0,
`expire_time` int(10) unsigned NOT NULL DEFAULT 0,
`deliver_time` int(10) unsigned NOT NULL DEFAULT 0,
`money` int(10) unsigned NOT NULL DEFAULT 0,
`cod` int(10) unsigned NOT NULL DEFAULT 0,
`checked` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_receiver` (`receiver`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Mail System';

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `mail_items`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `mail_items`
(
`mail_id` int(10) unsigned NOT NULL DEFAULT '0',
`item_guid` int(10) unsigned NOT NULL DEFAULT '0',
`receiver` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Character Global Unique Identifier',
`mail_id` int(10) unsigned NOT NULL DEFAULT 0,
`item_guid` int(10) unsigned NOT NULL DEFAULT 0,
`receiver` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Character Global Unique Identifier',
PRIMARY KEY (`item_guid`),
KEY `idx_receiver` (`receiver`),
KEY `idx_mail_id` (`mail_id`)

View file

@ -9,21 +9,21 @@ DROP TABLE IF EXISTS `pet_aura`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_aura`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`casterGuid` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT 'Full Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0',
`effectMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`recalculateMask` tinyint(3) unsigned NOT NULL DEFAULT '0',
`stackCount` tinyint(3) unsigned NOT NULL DEFAULT '1',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`casterGuid` bigint(20) unsigned NOT NULL DEFAULT 0 COMMENT 'Full Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0,
`effectMask` tinyint(3) unsigned NOT NULL DEFAULT 0,
`recalculateMask` tinyint(3) unsigned NOT NULL DEFAULT 0,
`stackCount` tinyint(3) unsigned NOT NULL DEFAULT 1,
`amount0` mediumint(8) NOT NULL,
`amount1` mediumint(8) NOT NULL,
`amount2` mediumint(8) NOT NULL,
`base_amount0` mediumint(8) NOT NULL,
`base_amount1` mediumint(8) NOT NULL,
`base_amount2` mediumint(8) NOT NULL,
`maxDuration` int(11) NOT NULL DEFAULT '0',
`remainTime` int(11) NOT NULL DEFAULT '0',
`remainCharges` tinyint(3) unsigned NOT NULL DEFAULT '0',
`maxDuration` int(11) NOT NULL DEFAULT 0,
`remainTime` int(11) NOT NULL DEFAULT 0,
`remainCharges` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`spell`,`effectMask`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `pet_spell`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_spell`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
`active` tinyint(3) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier',
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0 COMMENT 'Spell Identifier',
`active` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Pet System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `pet_spell_cooldown`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pet_spell_cooldown`
(
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier, Low part',
`spell` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
`time` int(10) unsigned NOT NULL DEFAULT '0',
`guid` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Global Unique Identifier, Low part',
`spell` mediumint(8) unsigned NOT NULL DEFAULT 0 COMMENT 'Spell Identifier',
`time` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -10,9 +10,9 @@ DROP TABLE IF EXISTS `petition`;
CREATE TABLE `petition`
(
`ownerguid` int(10) unsigned NOT NULL,
`petitionguid` int(10) unsigned DEFAULT '0',
`petitionguid` int(10) unsigned DEFAULT 0,
`name` varchar(24) NOT NULL,
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`ownerguid`,`type`),
UNIQUE KEY `index_ownerguid_petitionguid` (`ownerguid`,`petitionguid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Guild System';

View file

@ -10,10 +10,10 @@ DROP TABLE IF EXISTS `petition_sign`;
CREATE TABLE `petition_sign`
(
`ownerguid` int(10) unsigned NOT NULL,
`petitionguid` int(10) unsigned NOT NULL DEFAULT '0',
`playerguid` int(10) unsigned NOT NULL DEFAULT '0',
`player_account` int(10) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`petitionguid` int(10) unsigned NOT NULL DEFAULT 0,
`playerguid` int(10) unsigned NOT NULL DEFAULT 0,
`player_account` int(10) unsigned NOT NULL DEFAULT 0,
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`petitionguid`,`playerguid`),
KEY `Idx_playerguid` (`playerguid`),
KEY `Idx_ownerguid` (`ownerguid`)

View file

@ -9,8 +9,8 @@ DROP TABLE IF EXISTS `pool_quest_save`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_quest_save`
(
`pool_id` int(10) unsigned NOT NULL DEFAULT '0',
`quest_id` int(10) unsigned NOT NULL DEFAULT '0',
`pool_id` int(10) unsigned NOT NULL DEFAULT 0,
`quest_id` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`pool_id`,`quest_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -18,11 +18,11 @@ CREATE TABLE `pvpstats_players`
`score_bonus_honor` mediumint(8) unsigned NOT NULL,
`score_damage_done` mediumint(8) unsigned NOT NULL,
`score_healing_done` mediumint(8) unsigned NOT NULL,
`attr_1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`attr_2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`attr_3` mediumint(8) unsigned NOT NULL DEFAULT '0',
`attr_4` mediumint(8) unsigned NOT NULL DEFAULT '0',
`attr_5` mediumint(8) unsigned NOT NULL DEFAULT '0',
`attr_1` mediumint(8) unsigned NOT NULL DEFAULT 0,
`attr_2` mediumint(8) unsigned NOT NULL DEFAULT 0,
`attr_3` mediumint(8) unsigned NOT NULL DEFAULT 0,
`attr_4` mediumint(8) unsigned NOT NULL DEFAULT 0,
`attr_5` mediumint(8) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`battleground_id`,`character_guid`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,12 +9,12 @@ DROP TABLE IF EXISTS `quest_tracker`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quest_tracker`
(
`id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`character_guid` int(10) unsigned NOT NULL DEFAULT '0',
`id` mediumint(8) unsigned NOT NULL DEFAULT 0,
`character_guid` int(10) unsigned NOT NULL DEFAULT 0,
`quest_accept_time` datetime NOT NULL,
`quest_complete_time` datetime DEFAULT NULL,
`quest_abandon_time` datetime DEFAULT NULL,
`completed_by_gm` tinyint(1) NOT NULL DEFAULT '0',
`completed_by_gm` tinyint(1) NOT NULL DEFAULT 0,
`core_hash` varchar(120) NOT NULL DEFAULT '0',
`core_revision` varchar(120) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

View file

@ -0,0 +1,31 @@
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `recovery_item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `recovery_item`
(
`Id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`Guid` int(11) unsigned NOT NULL DEFAULT 0,
`ItemEntry` mediumint(8) unsigned NOT NULL DEFAULT 0,
`Count` int(11) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`Id`),
KEY `idx_guid` (`Guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `recovery_item` WRITE;
/*!40000 ALTER TABLE `recovery_item` DISABLE KEYS */;
/*!40000 ALTER TABLE `recovery_item` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

View file

@ -11,7 +11,7 @@ CREATE TABLE `version_db_characters`
(
`sql_rev` varchar(100) NOT NULL,
`required_rev` varchar(100) DEFAULT NULL,
`2019_01_06_00` bit(1) DEFAULT NULL,
`2020_01_04_00` bit(1) DEFAULT NULL,
PRIMARY KEY (`sql_rev`),
KEY `required` (`required_rev`),
CONSTRAINT `required` FOREIGN KEY (`required_rev`) REFERENCES `version_db_characters` (`sql_rev`)
@ -20,6 +20,12 @@ CREATE TABLE `version_db_characters`
LOCK TABLES `version_db_characters` WRITE;
/*!40000 ALTER TABLE `version_db_characters` DISABLE KEYS */;
INSERT INTO `version_db_characters` VALUES
('1557226918417685700',NULL,NULL),
('1557608218190967100',NULL,NULL),
('1572030074009407852',NULL,NULL),
('1572815191193825836',NULL,NULL),
('1575656087867346414',NULL,NULL);
/*!40000 ALTER TABLE `version_db_characters` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

View file

@ -9,9 +9,9 @@ DROP TABLE IF EXISTS `worldstates`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `worldstates`
(
`entry` int(10) unsigned NOT NULL DEFAULT '0',
`value` int(10) unsigned NOT NULL DEFAULT '0',
`comment` tinytext,
`entry` int(10) unsigned NOT NULL DEFAULT 0,
`value` int(10) unsigned NOT NULL DEFAULT 0,
`comment` tinytext DEFAULT NULL,
PRIMARY KEY (`entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Variable Saves';
/*!40101 SET character_set_client = @saved_cs_client */;
@ -22,12 +22,13 @@ INSERT INTO `worldstates` VALUES
(3781,9000000,NULL),
(3801,0,NULL),
(3802,1,NULL),
(20001,1454691600,NULL),
(20002,1471492800,NULL),
(20003,1471060800,NULL),
(20005,1471060800,NULL),
(20006,1471060800,NULL),
(20007,1472702400,NULL);
(20001,1454691600,'NextArenaPointDistributionTime'),
(20002,1471492800,'NextWeeklyQuestResetTime'),
(20003,1471060800,'NextBGRandomDailyResetTime'),
(20004,0,'cleaning_flags'),
(20005,1471060800,'NextDailyQuestResetTime'),
(20006,1471060800,'NextGuildDailyResetTime'),
(20007,1472702400,'NextMonthlyQuestResetTime');
/*!40000 ALTER TABLE `worldstates` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

View file

@ -10,17 +10,17 @@ DROP TABLE IF EXISTS `access_requirement`;
CREATE TABLE `access_requirement`
(
`mapId` mediumint(8) unsigned NOT NULL,
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level_min` tinyint(3) unsigned NOT NULL DEFAULT '0',
`level_max` tinyint(3) unsigned NOT NULL DEFAULT '0',
`item_level` smallint(5) unsigned NOT NULL DEFAULT '0',
`item` mediumint(8) unsigned NOT NULL DEFAULT '0',
`item2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`quest_done_A` mediumint(8) unsigned NOT NULL DEFAULT '0',
`quest_done_H` mediumint(8) unsigned NOT NULL DEFAULT '0',
`completed_achievement` mediumint(8) unsigned NOT NULL DEFAULT '0',
`quest_failed_text` text,
`comment` text,
`difficulty` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level_min` tinyint(3) unsigned NOT NULL DEFAULT 0,
`level_max` tinyint(3) unsigned NOT NULL DEFAULT 0,
`item_level` smallint(5) unsigned NOT NULL DEFAULT 0,
`item` mediumint(8) unsigned NOT NULL DEFAULT 0,
`item2` mediumint(8) unsigned NOT NULL DEFAULT 0,
`quest_done_A` mediumint(8) unsigned NOT NULL DEFAULT 0,
`quest_done_H` mediumint(8) unsigned NOT NULL DEFAULT 0,
`completed_achievement` mediumint(8) unsigned NOT NULL DEFAULT 0,
`quest_failed_text` text DEFAULT NULL,
`comment` text DEFAULT NULL,
PRIMARY KEY (`mapId`,`difficulty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Access Requirements';
/*!40101 SET character_set_client = @saved_cs_client */;
@ -104,7 +104,7 @@ INSERT INTO `access_requirement` VALUES
(578,1,80,0,180,0,0,0,0,0,NULL,'The Oculus (entrance)'),
(580,0,70,0,0,0,0,0,0,0,NULL,'Sunwell Plateau (Entrance)'),
(585,0,65,0,0,0,0,0,0,0,NULL,'Magisters\' Terrace (Entrance)'),
(585,1,70,0,0,0,0,11492,11492,0,NULL,'Magisters\' Terrace (Entrance)'),
(585,1,70,0,0,0,0,11492,11492,0,'You must complete the quest \"Hard to Kill\" and be level 70 before entering the Heroic difficulty of the Magisters\' Terrace.','Magisters\' Terrace (Entrance)'),
(595,0,75,0,0,0,0,0,0,0,NULL,'Culling of Stratholme (entrance)'),
(595,1,80,0,180,0,0,0,0,0,NULL,'Culling of Stratholme (entrance)'),
(599,0,72,0,0,0,0,0,0,0,NULL,'Ulduar,Halls of Stone (entrance)'),
@ -141,10 +141,10 @@ INSERT INTO `access_requirement` VALUES
(649,3,80,0,0,0,0,0,0,3916,NULL,'Trial of the Crusader'),
(650,0,75,0,180,0,0,0,0,0,NULL,'Trial of the Champion'),
(650,1,80,0,200,0,0,0,0,0,NULL,'Trial of the Champion'),
(658,0,78,0,180,0,0,24499,24511,0,NULL,'Pit of Saron (Entrance)'),
(658,1,80,0,200,0,0,24499,24511,0,NULL,'Pit of Saron (Entrance)'),
(668,0,78,0,180,0,0,24710,24712,0,NULL,'Halls of Reflection (Entrance)'),
(668,1,80,0,219,0,0,24710,24712,0,NULL,'Halls of Reflection (Entrance)'),
(658,0,78,0,180,0,0,24499,24511,0,'You must complete the quest \"Echoes of Tortured Souls\" before entering the Pit of Saron.','Pit of Saron (Entrance)'),
(658,1,80,0,200,0,0,24499,24511,0,'You must complete the quest \"Echoes of Tortured Souls\" and be level 80 before entering the Heroic difficulty of the Pit of Saron.','Pit of Saron (Entrance)'),
(668,0,78,0,180,0,0,24710,24712,0,'You must complete the quest \"Deliverance from the Pit\" before entering the Halls of Reflection.','Halls of Reflection (Entrance)'),
(668,1,80,0,219,0,0,24710,24712,0,'You must complete the quest \"Deliverance from the Pit\" and be level 80 before entering the Heroic difficulty of the Halls of Reflection.','Halls of Reflection (Entrance)'),
(724,0,80,0,0,0,0,0,0,0,NULL,'The Ruby Sanctum (Entrance)'),
(724,1,80,0,0,0,0,0,0,0,NULL,'The Ruby Sanctum (Entrance)'),
(724,2,80,0,0,0,0,0,0,0,NULL,'The Ruby Sanctum (Entrance)'),

View file

@ -0,0 +1,46 @@
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `achievement_category_dbc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `achievement_category_dbc`
(
`ID` int(11) NOT NULL DEFAULT 0,
`Parent` int(11) NOT NULL DEFAULT 0,
`Name_Lang_enUS` varchar(100) DEFAULT NULL,
`Name_Lang_enGB` varchar(100) DEFAULT NULL,
`Name_Lang_koKR` varchar(100) DEFAULT NULL,
`Name_Lang_frFR` varchar(100) DEFAULT NULL,
`Name_Lang_deDE` varchar(100) DEFAULT NULL,
`Name_Lang_enCN` varchar(100) DEFAULT NULL,
`Name_Lang_zhCN` varchar(100) DEFAULT NULL,
`Name_Lang_enTW` varchar(100) DEFAULT NULL,
`Name_Lang_zhTW` varchar(100) DEFAULT NULL,
`Name_Lang_esES` varchar(100) DEFAULT NULL,
`Name_Lang_esMX` varchar(100) DEFAULT NULL,
`Name_Lang_ruRU` varchar(100) DEFAULT NULL,
`Name_Lang_ptPT` varchar(100) DEFAULT NULL,
`Name_Lang_ptBR` varchar(100) DEFAULT NULL,
`Name_Lang_itIT` varchar(100) DEFAULT NULL,
`Name_Lang_Unk` varchar(100) DEFAULT NULL,
`Name_Lang_Mask` int(10) unsigned NOT NULL DEFAULT 0,
`Ui_Order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `achievement_category_dbc` WRITE;
/*!40000 ALTER TABLE `achievement_category_dbc` DISABLE KEYS */;
/*!40000 ALTER TABLE `achievement_category_dbc` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

View file

@ -10,9 +10,9 @@ DROP TABLE IF EXISTS `achievement_criteria_data`;
CREATE TABLE `achievement_criteria_data`
(
`criteria_id` mediumint(8) NOT NULL,
`type` tinyint(3) unsigned NOT NULL DEFAULT '0',
`value1` mediumint(8) unsigned NOT NULL DEFAULT '0',
`value2` mediumint(8) unsigned NOT NULL DEFAULT '0',
`type` tinyint(3) unsigned NOT NULL DEFAULT 0,
`value1` mediumint(8) unsigned NOT NULL DEFAULT 0,
`value2` mediumint(8) unsigned NOT NULL DEFAULT 0,
`ScriptName` char(64) NOT NULL DEFAULT '',
PRIMARY KEY (`criteria_id`,`type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Achievment system';

View file

@ -0,0 +1,57 @@
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
DROP TABLE IF EXISTS `achievement_criteria_dbc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `achievement_criteria_dbc`
(
`ID` int(11) NOT NULL DEFAULT 0,
`Achievement_Id` int(11) NOT NULL DEFAULT 0,
`Type` int(11) NOT NULL DEFAULT 0,
`Asset_Id` int(11) NOT NULL DEFAULT 0,
`Quantity` int(11) NOT NULL DEFAULT 0,
`Start_Event` int(11) NOT NULL DEFAULT 0,
`Start_Asset` int(11) NOT NULL DEFAULT 0,
`Fail_Event` int(11) NOT NULL DEFAULT 0,
`Fail_Asset` int(11) NOT NULL DEFAULT 0,
`Description_Lang_enUS` varchar(100) DEFAULT NULL,
`Description_Lang_enGB` varchar(100) DEFAULT NULL,
`Description_Lang_koKR` varchar(100) DEFAULT NULL,
`Description_Lang_frFR` varchar(100) DEFAULT NULL,
`Description_Lang_deDE` varchar(100) DEFAULT NULL,
`Description_Lang_enCN` varchar(100) DEFAULT NULL,
`Description_Lang_zhCN` varchar(100) DEFAULT NULL,
`Description_Lang_enTW` varchar(100) DEFAULT NULL,
`Description_Lang_zhTW` varchar(100) DEFAULT NULL,
`Description_Lang_esES` varchar(100) DEFAULT NULL,
`Description_Lang_esMX` varchar(100) DEFAULT NULL,
`Description_Lang_ruRU` varchar(100) DEFAULT NULL,
`Description_Lang_ptPT` varchar(100) DEFAULT NULL,
`Description_Lang_ptBR` varchar(100) DEFAULT NULL,
`Description_Lang_itIT` varchar(100) DEFAULT NULL,
`Description_Lang_Unk` varchar(100) DEFAULT NULL,
`Description_Lang_Mask` int(10) unsigned NOT NULL DEFAULT 0,
`Flags` int(11) NOT NULL DEFAULT 0,
`Timer_Start_Event` int(11) NOT NULL DEFAULT 0,
`Timer_Asset_Id` int(11) NOT NULL DEFAULT 0,
`Timer_Time` int(11) NOT NULL DEFAULT 0,
`Ui_Order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `achievement_criteria_dbc` WRITE;
/*!40000 ALTER TABLE `achievement_criteria_dbc` DISABLE KEYS */;
/*!40000 ALTER TABLE `achievement_criteria_dbc` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

View file

@ -9,23 +9,78 @@ DROP TABLE IF EXISTS `achievement_dbc`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `achievement_dbc`
(
`ID` int(10) unsigned NOT NULL,
`requiredFaction` int(11) NOT NULL DEFAULT '-1',
`mapID` int(11) NOT NULL DEFAULT '-1',
`points` int(10) unsigned NOT NULL DEFAULT '0',
`flags` int(10) unsigned NOT NULL DEFAULT '0',
`count` int(10) unsigned NOT NULL DEFAULT '0',
`refAchievement` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
`ID` int(11) NOT NULL DEFAULT 0,
`Faction` int(11) NOT NULL DEFAULT 0,
`Instance_Id` int(11) NOT NULL DEFAULT 0,
`Supercedes` int(11) NOT NULL DEFAULT 0,
`Title_Lang_enUS` varchar(100) DEFAULT NULL,
`Title_Lang_enGB` varchar(100) DEFAULT NULL,
`Title_Lang_koKR` varchar(100) DEFAULT NULL,
`Title_Lang_frFR` varchar(100) DEFAULT NULL,
`Title_Lang_deDE` varchar(100) DEFAULT NULL,
`Title_Lang_enCN` varchar(100) DEFAULT NULL,
`Title_Lang_zhCN` varchar(100) DEFAULT NULL,
`Title_Lang_enTW` varchar(100) DEFAULT NULL,
`Title_Lang_zhTW` varchar(100) DEFAULT NULL,
`Title_Lang_esES` varchar(100) DEFAULT NULL,
`Title_Lang_esMX` varchar(100) DEFAULT NULL,
`Title_Lang_ruRU` varchar(100) DEFAULT NULL,
`Title_Lang_ptPT` varchar(100) DEFAULT NULL,
`Title_Lang_ptBR` varchar(100) DEFAULT NULL,
`Title_Lang_itIT` varchar(100) DEFAULT NULL,
`Title_Lang_Unk` varchar(100) DEFAULT NULL,
`Title_Lang_Mask` int(10) unsigned NOT NULL DEFAULT 0,
`Description_Lang_enUS` varchar(200) DEFAULT NULL,
`Description_Lang_enGB` varchar(200) DEFAULT NULL,
`Description_Lang_koKR` varchar(200) DEFAULT NULL,
`Description_Lang_frFR` varchar(200) DEFAULT NULL,
`Description_Lang_deDE` varchar(200) DEFAULT NULL,
`Description_Lang_enCN` varchar(200) DEFAULT NULL,
`Description_Lang_zhCN` varchar(200) DEFAULT NULL,
`Description_Lang_enTW` varchar(200) DEFAULT NULL,
`Description_Lang_zhTW` varchar(200) DEFAULT NULL,
`Description_Lang_esES` varchar(200) DEFAULT NULL,
`Description_Lang_esMX` varchar(200) DEFAULT NULL,
`Description_Lang_ruRU` varchar(200) DEFAULT NULL,
`Description_Lang_ptPT` varchar(200) DEFAULT NULL,
`Description_Lang_ptBR` varchar(200) DEFAULT NULL,
`Description_Lang_itIT` varchar(200) DEFAULT NULL,
`Description_Lang_Unk` varchar(100) DEFAULT NULL,
`Description_Lang_Mask` int(10) unsigned NOT NULL DEFAULT 0,
`Category` int(11) NOT NULL DEFAULT 0,
`Points` int(11) NOT NULL DEFAULT 0,
`Ui_Order` int(11) NOT NULL DEFAULT 0,
`Flags` int(11) NOT NULL DEFAULT 0,
`IconID` int(11) NOT NULL DEFAULT 0,
`Reward_Lang_enUS` varchar(100) DEFAULT NULL,
`Reward_Lang_enGB` varchar(100) DEFAULT NULL,
`Reward_Lang_koKR` varchar(100) DEFAULT NULL,
`Reward_Lang_frFR` varchar(100) DEFAULT NULL,
`Reward_Lang_deDE` varchar(100) DEFAULT NULL,
`Reward_Lang_enCN` varchar(100) DEFAULT NULL,
`Reward_Lang_zhCN` varchar(100) DEFAULT NULL,
`Reward_Lang_enTW` varchar(100) DEFAULT NULL,
`Reward_Lang_zhTW` varchar(100) DEFAULT NULL,
`Reward_Lang_esES` varchar(100) DEFAULT NULL,
`Reward_Lang_esMX` varchar(100) DEFAULT NULL,
`Reward_Lang_ruRU` varchar(100) DEFAULT NULL,
`Reward_Lang_ptPT` varchar(100) DEFAULT NULL,
`Reward_Lang_ptBR` varchar(100) DEFAULT NULL,
`Reward_Lang_itIT` varchar(100) DEFAULT NULL,
`Reward_Lang_Unk` varchar(100) DEFAULT NULL,
`Reward_Lang_Mask` int(10) unsigned NOT NULL DEFAULT 0,
`Minimum_Criteria` int(11) NOT NULL DEFAULT 0,
`Shares_Criteria` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`) USING BTREE
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `achievement_dbc` WRITE;
/*!40000 ALTER TABLE `achievement_dbc` DISABLE KEYS */;
INSERT INTO `achievement_dbc` VALUES
(3696,-1,-1,0,2,1,0),
(4788,-1,-1,0,2,1,0),
(4789,-1,-1,0,2,1,0);
(3696,-1,-1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,2,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0),
(4788,-1,-1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,2,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0),
(4789,-1,-1,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,2,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0);
/*!40000 ALTER TABLE `achievement_dbc` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

View file

@ -9,15 +9,15 @@ DROP TABLE IF EXISTS `achievement_reward`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `achievement_reward`
(
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`title_A` mediumint(8) unsigned NOT NULL DEFAULT '0',
`title_H` mediumint(8) unsigned NOT NULL DEFAULT '0',
`item` mediumint(8) unsigned NOT NULL DEFAULT '0',
`sender` mediumint(8) unsigned NOT NULL DEFAULT '0',
`subject` varchar(255) DEFAULT NULL,
`text` text,
`mailTemplate` mediumint(8) unsigned DEFAULT '0',
PRIMARY KEY (`entry`)
`ID` mediumint(8) unsigned NOT NULL DEFAULT 0,
`TitleA` mediumint(8) unsigned NOT NULL DEFAULT 0,
`TitleH` mediumint(8) unsigned NOT NULL DEFAULT 0,
`ItemID` mediumint(8) unsigned NOT NULL DEFAULT 0,
`Sender` mediumint(8) unsigned NOT NULL DEFAULT 0,
`Subject` varchar(255) DEFAULT NULL,
`Body` text DEFAULT NULL,
`MailTemplateID` mediumint(8) unsigned DEFAULT 0,
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
/*!40101 SET character_set_client = @saved_cs_client */;

View file

@ -9,16 +9,246 @@ DROP TABLE IF EXISTS `achievement_reward_locale`;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `achievement_reward_locale`
(
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
`ID` mediumint(8) unsigned NOT NULL DEFAULT 0,
`Locale` varchar(4) NOT NULL,
`Subject` text,
`Text` text,
`Subject` text DEFAULT NULL,
`Text` text DEFAULT NULL,
PRIMARY KEY (`ID`,`Locale`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
/*!40101 SET character_set_client = @saved_cs_client */;
LOCK TABLES `achievement_reward_locale` WRITE;
/*!40000 ALTER TABLE `achievement_reward_locale` DISABLE KEYS */;
INSERT INTO `achievement_reward_locale` VALUES
(13,'deDE','Glückwunsch','Viele Glückwunsche bezüglich eurer Überzeugung, auch die 80. Saison der Abenteurer zu erreichen. Ihr seit zweifellos dem Ziel ergben, Azeroth vom Bösen zu befreien.$B$BObwohl der Weg hierher keine Kleinigkeit war, steht der wahre Kampf erst noch bevor.$B$BKämpft weiter!$B$BRhonin'),
(13,'esES','Nivel 80','Felicitaciones por tu convicción de llegar a la temporada 80 de aventuras. Sin duda, estás dedicado a la causa de librar a Azeroth de los males que nos han asolado.$B$BY aunque el viaje hasta ahora no ha sido una hazaña menor, la verdadera batalla está por llegar.$B$B¡Sigue luchando!$B$BRhonin'),
(13,'esMX','Nivel 80','Felicitaciones por tu convicción de llegar a la temporada 80 de aventuras. Sin duda, estás dedicado a la causa de librar a Azeroth de los males que nos han asolado.$B$BY aunque el viaje hasta ahora no ha sido una hazaña menor, la verdadera batalla está por llegar.$B$B¡Sigue luchando!$B$BRhonin'),
(13,'frFR','','Toutes mes félicitations pour votre application à atteindre votre quatre-vingtième saison d\'aventures. Vous êtes indubitablement $gdévoué:dévouée; à la cause de l\'éradication du mal qui nous touche en Azeroth.\n\nEt bien que le voyage n\'ait pas é une mince affaire jusqu\'à présent, la véritable bataille nous attend encore.\n\nContinuez le combat !\n\nRhonin'),
(13,'zhCN','80级','恭喜你在探险的过程中到达了80级毫无疑问你把自己的青春都献身于同试图征服艾泽拉斯的恶魔斗争的事业中去了并且应该做到了不小的成就。$B$B你虽已到达80级但还不是值得庆贺的时候更大的挑战还在等待着你。$B$B继续战斗吧$B$B罗宁'),
(45,'deDE','Ihr seid rumgekommen!','Nun seht Euch mal an!$B$BUnd ich dachte, ich hätte hier an diesem eisigen Ort schon einiges gesehen! Diesem Zwerg scheint es offensichtlich, dass das Feuer eines Forschers in Euren Augen brennt.$B$BTrage diesen Wappenrock mit Stolz, dann wissen Eure Freunde, wem sie nach dem Weg fragen müssen, wenn die Zeit gekommen ist!$B$BMacht weiter so!$B$BBrann Bronzebart'),
(45,'esES','¡Has estado por aquí!','Bueno, ¡mírate!$B$B¡Y pensé que había visto algunas cosas en este lugar helado! A este enano le parece obvio que tienes el fuego del explorador ardiendo en tus ojos.$B$BLleva este tabardo con orgullo. De esa manera, tus amigos sabrán a quién pedir direcciones cuando llegue el momento.$B$B¡Sigue en movimiento!$B$BBrann Barbabronce'),
(45,'esMX','¡Has estado por aquí!','Bueno, ¡mírate!$B$B¡Y pensé que había visto algunas cosas en este lugar helado! A este enano le parece obvio que tienes el fuego del explorador ardiendo en tus ojos.$B$BLleva este tabardo con orgullo. De esa manera, tus amigos sabrán a quién pedir direcciones cuando llegue el momento.$B$B¡Sigue en movimiento!$B$BBrann Barbabronce'),
(45,'frFR','Vous avez bien bourlingué !','Eh ben, vous !\n\nEt moi qui croyais avoir tout vu sur ces terres gelées ! Le feu de l\'exploration brûle en vous. Cela saute à mes yeux de nain.\n\nPortez ce tabard avec fierté. De cette façon, vos amis sauront toujours à qui demander leur chemin en temps voulu !\n\nRestez bien en selle !\n\nBrann Barbe-de-bronze'),
(45,'zhCN','你一直都在!','嘿,伙计!!$B$B 我认为我已经在这片冰天雪地的地方找到了点什么了! 对于我这个矮人来说,很明显在你的眼中有着探险家才有的激情.$B$B 戴上这个徽章吧. 这样当你的朋友要问路的时候就会想到你了! !$B$B 别停下脚步! !$B$B布莱恩·铜须'),
(46,'frFR','',NULL),
(230,'frFR','',NULL),
(432,'frFR','',NULL),
(456,'frFR','',NULL),
(614,'deDE','Für die Allianz!','Krieg überzieht unsere Länder. Nur die tapfersten aller Helden wagen es, der Horde dort einen Schlag zu versetzen, wo es wehtut. Ihr gehört zu eben diesen Helden.$B$BDer Schlag, den Ihr der Führung der Horde versetzt habt, bereitet unseren Weg für den finalen Angriff. Die Horde wird sich vor der Macht der Allianz verbeugen.$B$BEure Taten bleiben nicht ungewürdigt. Reitet mit Stolz!$B$B--Euer König'),
(614,'esES','¡Por la Alianza!','La guerra hace estragos en nuestras tierras. Solo los héroes más valientes se atreven a desafiar a la Horda donde más les duele. Estás entre esos héroes.$B$BLos golpes que le has dado a los líderes de la Horda abrirán la puerta a nuestro asalto final. La Horda se inclinará ante el poder de la Alianza.$B$BTus acciones no quedarán sin recompensa. ¡Sigue adelante con orgullo!$B$B--Tu rey'),
(614,'esMX','¡Por la Alianza!','La guerra hace estragos en nuestras tierras. Solo los héroes más valientes se atreven a desafiar a la Horda donde más les duele. Estás entre esos héroes.$B$BLos golpes que le has dado a los líderes de la Horda abrirán la puerta a nuestro asalto final. La Horda se inclinará ante el poder de la Alianza.$B$BTus acciones no quedarán sin recompensa. ¡Sigue adelante con orgullo!$B$B--Tu rey'),
(614,'frFR','Pour l\'Alliance !','La guerre fait rage sur nos terres. Seuls les héros les plus courageux osent frapper la Horde en ses points les plus sensibles. Vous êtes l\'un d\'eux.\n\nLes coups que vous avez portés au commandement de la Horde vont nous permettre de lancer notre assaut final. La Horde fléchira sous la puissance de l\'Alliance.\n\nVos actes seront récompensés. Chevauchez avec fierté !\n\n— Votre roi'),
(614,'zhCN','为了联盟!','战争的怒火席卷了整个大陆。只有最勇敢的人才敢发动斩首行动给敌人以迎头痛击。而你,就是这样的英雄。$B$B你和你的同伴们的行动将给我们最终的胜利带来不可估量的影响。部落在我们联盟的力量面前必将屈服。$B$B你的所作所为不会没有回报这就是奖励给你的坐骑自豪地骑上去吧。$B$B为了联盟$B$B--你的国王'),
(619,'deDE','Für die Horde!','In Zeiten großer Unruhen erheben sich wahre Helden aus dem Elend. Ihr seid ein solch großer Held.$B$BDer Krieg steht vor der Tür. Eure Bemühungen werden unsere Sache in Azeroth voranbringen. Eure großen Taten werden belohnt werden. Nehmt diese Belohnung von Orgrimmar und reitet zum Ruhm.$B$BFür die Horde!$B$BKriegshäuptling Thrall'),
(619,'esES','¡Por la Horda!','En esta época de gran agitación, los verdaderos héroes surgen de la miseria. Eres uno de esos grandes héroes.$B$BLa guerra está sobre nosotros. Tus esfuerzos promoverán nuestra causa en Azeroth. Tus grandes hazañas serán recompensadas. Toma este premio de Orgrimmar y cabalga hacia la gloria.$B$B¡Por la Horda!$B$BJefe de Guerra Thrall'),
(619,'esMX','¡Por la Horda!','En esta época de gran agitación, los verdaderos héroes surgen de la miseria. Eres uno de esos grandes héroes.$B$BLa guerra está sobre nosotros. Tus esfuerzos promoverán nuestra causa en Azeroth. Tus grandes hazañas serán recompensadas. Toma este premio de Orgrimmar y cabalga hacia la gloria.$B$B¡Por la Horda!$B$BJefe de Guerra Thrall'),
(619,'frFR','Pour la Horde !','En ces temps troublés, nos souffrances engendrent de vrais héros. Vous êtes l\'un d\'eux.\n\nNous sommes en guerre. Vos efforts soutiennent notre cause en Azeroth. Vos hautes actions seront récompensées. Prenez ce prix d\'Orgrimmar et chevauchez vers la gloire.\n\nPour la Horde !\n\nChef de guerre Thrall'),
(619,'zhCN','为了部落!','在这次行动中,伟大的勇士从苦难困苦中昂首站了起来。你就是其中之一。$B$B战争就在我们面前你的努力会为我们在艾泽拉斯的征程上画上浓重的一笔。你的勇敢必须要得到奖励 请收下这来自奥格瑞玛的奖励,并且彰显 你的果敢!$B$B为了部落$B$B大酋长萨尔'),
(714,'frFR','',NULL),
(762,'frFR','',NULL),
(870,'frFR','',NULL),
(871,'frFR','',NULL),
(876,'deDE','Brutaler Kämpfer','Ihr habt ein ganz schönes Händchen dafür Euch in diese Arena zu werfen. Behaltet das bei. Tragt es mit Stolz. Jetzt geht wieder rein und zeigt ihnen, wie es gemacht wird! $B$BOnkel Sal'),
(876,'esES','Te he estado mirando $gniño:niña;','Tienes una gran habilidad para vencer en esa arena. Guarda esto. Úsalo con orgullo. ¡Ahora vuelve y enséñales cómo se hace!$B$BTío sal'),
(876,'esMX','Te he estado mirando $gniño:niña;','Tienes una gran habilidad para vencer en esa arena. Guarda esto. Úsalo con orgullo. ¡Ahora vuelve y enséñales cómo se hace!$B$BTío sal'),
(876,'frFR','Je vous surveille , enfent.',NULL),
(876,'zhCN','我一直在关注着你,孩子。','你长期泡在竞技场的行为给你的格斗技巧带来了很大的提升,$n。 收下这件战袍,然后穿上它。自豪地走上街,让别人看看你洒过的汗水以及收获的果实!$B$B赛尔叔叔'),
(907,'frFR','',NULL),
(913,'frFR','',NULL),
(942,'frFR','',NULL),
(943,'frFR','',NULL),
(945,'frFR','',NULL),
(948,'frFR','',NULL),
(953,'frFR','',NULL),
(978,'frFR','',NULL),
(1015,'frFR','',NULL),
(1021,'deDE','Ganz schön erfolgreich','Mir ist aufgefallen, was für eine eindrucksvolle Sammlung an Wappenröcken Ihr mit der Zeit gesammelt habt. Ihr könnt diesen hier genauso gut Eurer Sammlung hinzufügen. Er hat in meinem Schrank nur Staub angesetzt.'),
(1021,'esES','$gCompleto:Completa; $gTriunfador:Triunfadora;','No pude evitar darme cuenta de la excelente colección de tabardos que has conseguido reunir a lo largo de las temporadas. También podrías agregar este a tu colección. Simplemente ha estado acumulando polvo en mi armario.'),
(1021,'esMX','$gCompleto:Completa; $gTriunfador:Triunfadora;','No pude evitar darme cuenta de la excelente colección de tabardos que has conseguido reunir a lo largo de las temporadas. También podrías agregar este a tu colección. Simplemente ha estado acumulando polvo en mi armario.'),
(1021,'frFR','',NULL),
(1021,'zhCN','相当成功!','你日复一日,年复一年的收集战袍,让我不由得注意到了你。我想,你也会很乐意收下这件吧, 嗯,或许,战袍在我这里更容易沾染灰尘。'),
(1038,'frFR','',NULL),
(1039,'frFR','',NULL),
(1174,'frFR','',NULL),
(1175,'frFR','',NULL),
(1250,'deDE','Stinkis neues Zuhause','Ich habe gehört, wie gut Ihr Euch um unsere pelzigen Freunde kümmert. Ich hoffe, es macht Euch nichts aus, aber ich muss Stinki ein neues Zuhause verschaffen. Er weigert sich einfach, friedlich mit den Anderen zu spielen.$B$BBitte stellt sicher, dass er zweimal täglich gefüttert wird. Und, ähm... er hat eine Schwäche für schwarze Katzen.$B$B--Breanni'),
(1250,'esES','El nuevo hogar de Stinker','Escuché lo bien que cuidas a nuestros amigos peludos. Espero que no te importe, pero debo conseguirle a Stinker un nuevo hogar. Simplemente se niega a jugar bien con los demás.$B$BAsegúrate de alimentarlo dos veces al día. Y umm... tiene algo con los gatos negros.$B$B--Breanni'),
(1250,'esMX','El nuevo hogar de Stinker','Escuché lo bien que cuidas a nuestros amigos peludos. Espero que no te importe, pero debo conseguirle a Stinker un nuevo hogar. Simplemente se niega a jugar bien con los demás.$B$BAsegúrate de alimentarlo dos veces al día. Y umm... tiene algo con los gatos negros.$B$B--Breanni'),
(1250,'frFR','',NULL),
(1250,'zhCN','臭臭的新家','我听说了你很喜欢养一些毛茸茸小动物的事,我希望你不会介意我给我的臭臭找一个新家吧——它拒绝和我这里的小动物一起玩耍。$B$B如果你收下请确保一天喂它两次。然后它貌似对黑猫挺有兴趣的你懂的。$B$B--布琳妮'),
(1400,'frFR','',NULL),
(1402,'frFR','',NULL),
(1516,'frFR','',NULL),
(1563,'frFR','',NULL),
(1656,'frFR','',NULL),
(1657,'frFR','',NULL),
(1658,'frFR','',NULL),
(1681,'deDE','Grüße aus Darnassus','Eure Erfolge waren tiefgreifend und weitreichend. Azeroth profitiert bei den jüngsten Tumulten in großem Maße von jenen, die das Land vom Bösen zu befreien suchen.$B$BNur diejenigen, die sich die Zeit nehmen, unser Land kennen zu lernen, verstehen das Opfer der Gefallenen und den Wert unserer Helden. Ihr seid ein solcher Held. Hoffentlich werdet Ihr Euch noch in vielen Jahren an die Geschichten Eurer Abenteuer erinnern können.$B$BIm Namen der Allianz danke ich Euch, Meister der Lehren.'),
(1681,'esES','Saludos de Darnassus','Tus logros han sido profundos y de gran alcance. Azeroth, con toda la agitación reciente, se beneficia enormemente de aquellos que buscan librar a la tierra del mal.$B$BSolo aquellos que se toman el tiempo de conocer nuestras tierras comprenden los sacrificios de los caídos y el valor de $gnuestros:nuestras; $ghéroes:heroinas;. Eres $guno:una; de esos $ghéroes:heroínas;. Con suerte, se recordarán los relatos de sus aventuras durante los próximos años.$B$BEn nombre de la Alianza, te doy las gracias, Maestro Cultural.'),
(1681,'esMX','Saludos de Darnassus','Tus logros han sido profundos y de gran alcance. Azeroth, con toda la agitación reciente, se beneficia enormemente de aquellos que buscan librar a la tierra del mal.$B$BSolo aquellos que se toman el tiempo de conocer nuestras tierras comprenden los sacrificios de los caídos y el valor de $gnuestros:nuestras; $ghéroes:heroinas;. Eres $guno:una; de esos $ghéroes:heroínas;. Con suerte, se recordarán los relatos de sus aventuras durante los próximos años.$B$BEn nombre de la Alianza, te doy las gracias, Maestro Cultural.'),
(1681,'frFR','',NULL),
(1681,'zhCN','来自达纳苏斯的问候','你的成就是意义重大且影响深远的。一直以来饱受折磨的艾泽拉斯因为你的这次行为而摆脱了恶魔的束缚。$B$B只有那些愿意花时间去了解我们土地的人才能明白我们的那些勇士为这片大陆前赴后继的意义你是其中的一个。 很高兴你能顺利结束你的探险,愿艾露恩祝福着你。$B$B一切为了联盟感谢你 博学者。$B$B--泰兰德·语风'),
(1682,'deDE','Grüße aus Donnerfels','Eure Erfolge waren tiefgreifend und weitreichend. Azeroth profitiert bei den jüngsten Tumulten in großem Maße von jenen, die das Land vom Bösen zu befreien versuchen.$B$BNur diejenigen, die sich die Zeit nehmen, unser Land kennen zu lernen, verstehen das Opfer der Gefallenen und den Wert unserer Helden. Ihr seid ein solcher Held. Hoffentlich werdet Ihr Euch noch in vielen Jahren an die Geschichten Eurer Abenteuer erinnern können.$B$BHabt Dank, Meister der Lehren.$B$BFür die Horde!$B$B--Cairne Bluthuf'),
(1682,'esES','Saludos desde Cima del Trueno','Las noticias de sus logros han viajado lejos. Los vientos de la agitación aúllan a través de nuestras tierras. Aquellos que desafían el mal son nuestra única esperanza.$B$BSolo aquellos que escuchan los vientos comprenden las deudas que nuestros héroes caídos han pagado para proteger a nuestra gente. Que $gun:una; $ghéroe:heroína; como tú viva mucho para contar las historias de tus aventuras. Porque solo entonces recordaremos cuánto tenemos que estar agradecidos.$B$BNuestro agradecimiento es profundo, $gMaestro:Maestra; Cultural.$B$B¡Por la Horda!$B$B--Cairne Pezuña de Sangre'),
(1682,'esMX','Saludos desde Cima del Trueno','Las noticias de sus logros han viajado lejos. Los vientos de la agitación aúllan a través de nuestras tierras. Aquellos que desafían el mal son nuestra única esperanza.$B$BSolo aquellos que escuchan los vientos comprenden las deudas que nuestros héroes caídos han pagado para proteger a nuestra gente. Que $gun:una; $ghéroe:heroína; como tú viva mucho para contar las historias de tus aventuras. Porque solo entonces recordaremos cuánto tenemos que estar agradecidos.$B$BNuestro agradecimiento es profundo, $gMaestro:Maestra; Cultural.$B$B¡Por la Horda!$B$B--Cairne Pezuña de Sangre'),
(1682,'frFR','',NULL),
(1682,'zhCN','来自雷霆崖的问候','你的故事被广为流传, 犹如一股飓风席卷了整个大陆。 那些敢于和恶魔战斗的人是我们唯一的期望。$B$B只有那些听懂风的语言的人才能明白我们欠那些为保护这片大陆而倒下的勇士们多少。希望你能把你探险的故事告诉更多像你这样活着的年轻人。然后我们就会记起来我们在这个世上有多少需要感谢。$B$B向你致以深深的感谢博学者大地母亲与你同在。$B$B为了部落$B$B--凯恩·血蹄'),
(1683,'frFR','',NULL),
(1684,'frFR','',NULL),
(1691,'frFR','',NULL),
(1692,'frFR','',NULL),
(1693,'frFR','',NULL),
(1707,'frFR','',NULL),
(1784,'frFR','',NULL),
(1793,'frFR','',NULL),
(1956,'deDE','Hohe Schule','Herzlichen Glückwunsch zu Eurem Abschluss in den Schulen der arkanen Magie. In Anerkennung Eurer Hingabe lege ich diesen speziellen Buchband bei, der die Serie vervollständigt.$B$BIch denke, dass Ihr diesen Folianten sehr unterhaltsam finden werdet. Doch das dürft Ihr selbst entscheiden.$B$BHochachtungsvoll,$B$BRhonin'),
(1956,'frFR','Lectures studieuses','Félicitations ! Vous avez terminé d\'étudier « Les écoles de magie des arcanes ». En récompense de votre dévouement, veuillez trouver ci-joint le volume spécial qui termine la collection.\n\nJe pense que vous trouverez ce tome particulièrement divertissant. Mais je vous laisse le découvrir par vous-même.\n\nCordialement,\n\nRhonin'),
(1956,'zhCN','进修','恭喜你顺利完成了在达拉然魔法学院的进修工作。为了鼓励你所获得的成就, 我把这部典籍邮寄给你,希望你能收下。$B$B我想你应该能知道这份籍的用途。$B$B向你致以真诚的问候。$B$B罗宁'),
(2051,'frFR','',NULL),
(2054,'frFR','',NULL),
(2096,'deDE','Der Münzenmeister','Grüße und Glückwünsche dazu, dass Ihr das gesamte Set der Dalaranmünzen gesammelt habt! Als Belohnung Eurer harten Arbeit habe ich diesem Schreiben ein frisch geprägtes Titansiegel von Dalaran beigelegt. Dies ist eine besondere Münze, die wir nur den leidenschaftlichsten aller Sammler verleihen.$B$BIch hoffe, Ihr findet Freude an dieser speziellen Belohnung. Ihr habt Sie Euch verdient!$B$BHochachtungsvoll,$B$BJepetto Spaßbrumm'),
(2096,'frFR','',NULL),
(2096,'zhCN','金币达人','你好,恭喜你成功收集到了达拉然喷泉的所有硬币! 为了表彰你,我准备把这枚达拉然泰坦神铁徽记赠与你,这是一枚我们只奖励给狂热的硬币收集者的礼物。$B$B希望你会喜欢我这份特殊的礼物现在它是你的了$B$B真挚的问候您。$B耶比托·乔巴斯'),
(2136,'deDE','Ruhm des Helden','Held,$B$BErzählungen der großen Taten, die Ihr seit eurem Eintreffen in Nordend vollbracht habt, sind bis zum Wyrmruhtempel vorgedrungen.$B$BEure Tapferkeit soll nicht unbemerkt bleiben. Bitte aktzeptiert dieses Geschenk im Namen der Aspekte. Mögen wir zusammen Azeroth ein für alle Mal vom Bösen befreien.$B$BAlexstrasza, die Lebensbinderin'),
(2136,'esES','La gloria $gdel:de la; $ghéroe:heroína;','$gCampeón:Campeona;,$B$BHa llegado al Templo del Reposo del Dragón las grandes hazañas heroicas que has realizado desde que llegaste a Rasganorte.$B$BTu valentía no debe pasar desapercibida. Acepta este regalo en nombre de los Aspectos. Juntos libraremos a Azeroth del mal, de una vez y para siempre.$B$BAlexstrasza la Protectora'),
(2136,'esMX','La gloria $gdel:de la; $ghéroe:heroína;','$gCampeón:Campeona;,$B$BHa llegado al Templo del Reposo del Dragón las grandes hazañas heroicas que has realizado desde que llegaste a Rasganorte.$B$BTu valentía no debe pasar desapercibida. Acepta este regalo en nombre de los Aspectos. Juntos libraremos a Azeroth del mal, de una vez y para siempre.$B$BAlexstrasza la Protectora'),
(2136,'frFR','',NULL),
(2136,'zhCN','英雄的荣耀!','尊敬的勇士,$B$B你在诺森德英勇战斗的身影以及所获得的成就已经传到了龙眠神殿。$B$B你的勇敢不容忽视请你务必接受这份礼物和它一起我们并肩驱逐诺德德的恶魔一次抑或永远。$B$B阿莱克丝塔萨生命缚誓者'),
(2143,'deDE','Führen der Kavalerie','Ich konnte nicht umhin, zu sehen wie gut Ihr mit Tieren umgeht. Bei allem was hier vorgeht, laufen meine Geschäfte besser denn je.$B$BIch nehme nicht an, dass es Euch etwas ausmacht, für mich auf diesen Albinodrachen aufzupassen. Ich habe einfach nicht genug Zeit, mich um all diese Tiere zu kümmern.$B$BViele Grüße.$B$BMei'),
(2143,'esES','Liderar la caballería','No pude evitar notar lo $gbueno:buena; que eres con el ganado. Con toda la actividad por aquí, el negocio ha ido mejor que nunca para mí. Supongo que no te importaría cuidar de este Draco Albino por mí. Simplemente no tengo suficientes minutos libres en el día para cuidar a todos estos animales.$B$BTuya, Mei'),
(2143,'esMX','Liderar la caballería','No pude evitar notar lo $gbueno:buena; que eres con el ganado. Con toda la actividad por aquí, el negocio ha ido mejor que nunca para mí. Supongo que no te importaría cuidar de este Draco Albino por mí. Simplemente no tengo suficientes minutos libres en el día para cuidar a todos estos animales.$B$BTuya, Mei'),
(2143,'frFR','',NULL),
(2143,'zhCN','带领骑兵队','我发现你和你的坐骑们相处得好像挺不错的嘛,我每天都要对着这些牲畜简直烦躁死了。我想,你不会介意替我照看下这只白色幼龙吧?我只是抽不出空暇的时间来照顾这么多的坐骑了。$B$B梅尔·弗兰希斯'),
(2144,'deDE','Ein ums andere Mal','Dadurch, dass in der Ferne immer die Kriegstrommeln ertönen, vergessen die Bewohner Azeroths nur allzu leicht all die Dinge, die das Leben zu bieten hat.$B$BIhr habt hingegen mit Eurer Fähigkeit, Euch daran zu erinnern, wofür wir letztlich kämpfen, die Erhabenheit der guten Völker Azeroths bewahrt. Unsere Siege nicht zu feiern wäre eine weitere Form der Niederlage. Denkt immer daran, Feiernder.$B$BMögen andere von Eurem Frohsinn inspiriert werden.$B$BAlextrasza, die Lebensbinderin'),
(2144,'esES','Una y otra vez','Con los tambores de guerra retumbando a lo lejos, es fácil para los habitantes de Azeroth olvidar todo lo que la vida tiene para ofrecer.$B$BTú, por otro lado, has mantenido la dignidad de las buenas razas de Azeroth con tu habilidad para recordar por qué luchamos. No celebrar nuestras victorias es otra forma de derrota. Recuérdalo bien, Juerguista.$B$BQue otros se inspiren en tus ganas de vivir.$B$BAlexstrasza la Protectora'),
(2144,'esMX','Una y otra vez','Con los tambores de guerra retumbando a lo lejos, es fácil para los habitantes de Azeroth olvidar todo lo que la vida tiene para ofrecer.$B$BTú, por otro lado, has mantenido la dignidad de las buenas razas de Azeroth con tu habilidad para recordar por qué luchamos. No celebrar nuestras victorias es otra forma de derrota. Recuérdalo bien, Juerguista.$B$BQue otros se inspiren en tus ganas de vivir.$B$BAlexstrasza la Protectora'),
(2144,'frFR','',NULL),
(2144,'zhCN','千奇百怪的漫长旅行','随着远方漫天战鼓的响起,对于你们这些艾泽拉斯的外来人来说,忘记生命的意义是一件再正常不过的事情。$B$B你从另一个角度来说用你的所作所为来扞卫艾泽拉斯一个高贵种族的尊严并且去记住我们为之奋斗的东西。 不是为了庆祝我们的胜利,也许是我们在另一个方面的胜利更合适。记住你所做过的事情,旅行者。$B$B希望其他人会为你的行为而欢呼。$B$B阿莱克丝塔萨生命缚誓者'),
(2145,'deDE','Ein ums andere Mal','Dadurch, dass in der Ferne immer die Kriegstrommeln ertönen, vergessen die Bewohner Azeroths nur allzu leicht all die Dinge, die das Leben zu bieten hat.$B$BIhr habt hingegen mit Eurer Fähigkeit, Euch daran zu erinnern, wofür wir letztlich kämpfen, die Erhabenheit der guten Völker Azeroths bewahrt. Unsere Siege nicht zu feiern wäre eine weitere Form der Niederlage. Denkt immer daran, Feiernder.$B$BMögen andere von Eurem Frohsinn inspiriert werden.$B$BAlextrasza, die Lebensbinderin'),
(2145,'esES','Una y otra vez','Con los tambores de guerra retumbando a lo lejos, es fácil para los habitantes de Azeroth olvidar todo lo que la vida tiene para ofrecer.$B$BTú, por otro lado, has mantenido la dignidad de las buenas razas de Azeroth con tu habilidad para recordar por qué luchamos. No celebrar nuestras victorias es otra forma de derrota. Recuérdalo bien, Juerguista.$B$BQue otros se inspiren en tus ganas de vivir.$B$BAlexstrasza la Protectora'),
(2145,'esMX','Una y otra vez','Con los tambores de guerra retumbando a lo lejos, es fácil para los habitantes de Azeroth olvidar todo lo que la vida tiene para ofrecer.$B$BTú, por otro lado, has mantenido la dignidad de las buenas razas de Azeroth con tu habilidad para recordar por qué luchamos. No celebrar nuestras victorias es otra forma de derrota. Recuérdalo bien, Juerguista.$B$BQue otros se inspiren en tus ganas de vivir.$B$BAlexstrasza la Protectora'),
(2145,'frFR','',NULL),
(2145,'zhCN','千奇百怪的漫长旅行','随着远方漫天战鼓的响起,对于你们这些艾泽拉斯的外来人来说,忘记生命的意义是一件再正常不过的事情。$B$B你从另一个角度来说用你的所作所为来扞卫艾泽拉斯一个高贵种族的尊严并且去记住我们为之奋斗的东西。 不是为了庆祝我们的胜利,也许是我们在另一个方面的胜利更合适。记住你所做过的事情,旅行者。$B$B希望其他人会为你的行为而欢呼。$B$B阿莱克丝塔萨生命缚誓者'),
(2186,'frFR','',NULL),
(2187,'frFR','',NULL),
(2188,'frFR','',NULL),
(2336,'frFR','',NULL),
(2516,'deDE','Wie man sich Freunde macht','Hallo!$B$BWie ich gehört habe, habt Ihr dem kleinen Stinker ein warmes und liebevolles Zuhause geschaffen... Ich frage mich nun, ob Ihr vielleicht Interesse daran hättet, ein weiteres, eigensinniges Waisenkind aufzunehmen?$B$BDieses kleine Kitz ist zwar ein wenig schüchtern, doch sollte es Euch dank des mitgesandten Gegenstandes ein leichtes sein, seine Freundschaft zu gewinnen: seinem Lieblingsleckstein!$B$B--Breanni'),
(2516,'esES','Una amiga muy \"salá\"','¡Hola!$B$BTengo entendido que has conseguido un dulce y acogedor hogar incluso para ese travieso de Cuesqui... Tenía la esperanza de que quisieras acoger a otro huérfano inesperado.$B$BEsta Cervatilla es algo tímida, pero no tendrás ningún problema para ganarte su amistad con lo que te envío: ¡Su piedra de sal favorita!$B$B--Breanni'),
(2516,'esMX','Una amiga muy \"salá\"','¡Hola!$B$BTengo entendido que has conseguido un dulce y acogedor hogar incluso para ese travieso de Cuesqui... Tenía la esperanza de que quisieras acoger a otro huérfano inesperado.$B$BEsta Cervatilla es algo tímida, pero no tendrás ningún problema para ganarte su amistad con lo que te envío: ¡Su piedra de sal favorita!$B$B--Breanni'),
(2516,'frFR','',NULL),
(2516,'zhCN','小宠物猎人','你好!$B$B我知道你已经给了淘气的臭臭一个温暖而又舒适的小窝我希望你更加乐意收留这只迷你又可爱的小鹿。$B$B这只小鹿很害羞的但是我想你用这个附赠的小鹿的盐块就能很轻易地和它建立起牢固的友情哦$B$B--布琳妮'),
(2536,'deDE','Tierisch viele Reittiere','Ich habe gehört, dass Eure Ställe inzwischen fast so groß sind wie meine. Beeindruckend! Vielleicht könnten wir einander aushelfen...$B$BIch habe einen Drachenfalken zuviel und hoffe, dass Ihr ihm ein neues Zuhause geben könnt. Natürlich ist es zum Reittier und nicht zum Jagdtier ausgebildet worden und Ihr werdet sehen, dass es Euch genauso loyal und unermüdlich wie jedes meiner anderen Tiere zur Seite stehen wird.$B$BMit freundlichen Grüßen,$BMei'),
(2536,'esES','Un montón de monturas','Escuché que tus establos son casi tan extensos como los míos ahora. ¡Impresionante! Quizás podamos ayudarnos tu y yo... Tengo demasiados dracohalcones y esperaba que pudieras darle un hogar a este. Naturalmente, ha sido entrenado como montura y no como mascota de caza, y lo encontrarás tan leal e incansable como cualquier otro corcel que críe.$B$BTuya de nuevo, Mei'),
(2536,'esMX','Un montón de monturas','Escuché que tus establos son casi tan extensos como los míos ahora. ¡Impresionante! Quizás podamos ayudarnos tu y yo... Tengo demasiados dracohalcones y esperaba que pudieras darle un hogar a este. Naturalmente, ha sido entrenado como montura y no como mascota de caza, y lo encontrarás tan leal e incansable como cualquier otro corcel que críe.$B$BTuya de nuevo, Mei'),
(2536,'frFR','',NULL),
(2536,'zhCN','堆积如山的坐骑','我听说现在你的坐骑数量几乎要和我一样多了,真令人钦佩啊! 也许你能帮我一件事情,我这里有太多的龙鹰了, 希望你能给它一个家? 当然,它是被训练成一只合格的坐骑而不是,额,猎人的宠物。你会发现它的优点:不知疲倦,用不完的力气。哈哈。$B$B--梅尔·弗兰希斯'),
(2537,'deDE','Tierisch viele Reittiere','Ich habe gehört, dass Eure Ställe inzwischen fast so groß sind wie meine. Beeindruckend! Vielleicht könnten wir einander aushelfen...$B$BIch habe einen Drachenfalken zuviel und hoffe, dass Ihr ihm ein neues Zuhause geben könnt. Natürlich ist es zum Reittier und nicht zum Jagdtier ausgebildet worden und Ihr werdet sehen, dass es Euch genauso loyal und unermüdlich wie jedes meiner anderen Tiere zur Seite stehen wird.$B$BMit freundlichen Grüßen,$BMei'),
(2537,'esES','Un montón de monturas','Escuché que tus establos son casi tan extensos como los míos ahora. ¡Impresionante! Quizás podamos ayudarnos tu y yo... Tengo demasiados dracohalcones y esperaba que pudieras darle un hogar a este. Naturalmente, ha sido entrenado como montura y no como mascota de caza, y lo encontrarás tan leal e incansable como cualquier otro corcel que críe.$B$BTuya de nuevo, Mei'),
(2537,'esMX','Un montón de monturas','Escuché que tus establos son casi tan extensos como los míos ahora. ¡Impresionante! Quizás podamos ayudarnos tu y yo... Tengo demasiados dracohalcones y esperaba que pudieras darle un hogar a este. Naturalmente, ha sido entrenado como montura y no como mascota de caza, y lo encontrarás tan leal e incansable como cualquier otro corcel que críe.$B$BTuya de nuevo, Mei'),
(2537,'frFR','',NULL),
(2537,'zhCN','堆积如山的坐骑','我听说现在你的坐骑数量几乎要和我一样多了,真令人钦佩啊! 也许你能帮我一件事情,我这里有太多的龙鹰了, 希望你能给它一个家? 当然,它是被训练成一只合格的坐骑而不是,额,猎人的宠物。你会发现它的优点:不知疲倦,用不完的力气。哈哈。$B$B--梅尔·弗兰希斯'),
(2760,'frFR','',NULL),
(2761,'frFR','',NULL),
(2762,'frFR','',NULL),
(2763,'frFR','',NULL),
(2764,'frFR','',NULL),
(2765,'frFR','',NULL),
(2766,'frFR','',NULL),
(2767,'frFR','',NULL),
(2768,'frFR','',NULL),
(2769,'frFR','',NULL),
(2796,'deDE','Willkommen im Club Bier des Monats e.V.!','$N,$B$BWillkommen im Club Bier des Monats e.V.! Dieser Club hat es sich zur Aufgabe gemacht Euch einige der besten Biere der Welt anzubieten. $B$BJeden Monat wird Euch ein neues Gebräu zugeschickt. Wenn Euch dieses Gebräu gefällt und Ihr noch mehr davon wollt, sprecht einfach mit den Mitgliedern des Bier des Monats e.V..$B$BNochmals, willkommen im Club, $N.$B$B- Bier des Monats e.V.'),
(2796,'frFR','',NULL),
(2796,'zhCN','欢迎来到本月的美酒俱乐部!','$N,$B$B欢迎来到每月美酒俱乐部.$B$B每个月你都会收到我们邮寄给你的美酒. $B$B再次欢迎你的加入, $N.$B$B- 来自每月美酒俱乐部!'),
(2797,'frFR','',NULL),
(2798,'frFR','',NULL),
(2816,'frFR','',NULL),
(2817,'frFR','',NULL),
(2903,'frFR','',NULL),
(2904,'frFR','',NULL),
(2957,'deDE','Ruhm des Schlachtzüglers von Ulduar','$GLieber:Liebe; $N,$B$BIch hoffe, dass es Euch gut geht und dass Ihr Zeit hattet Euch von unseren Mätzchen in Ulduar zu erholen.$B$BMeine Jungs vom Erkundungsteam sind auf dieses arme halbtote Reitdrachen-Jungtier gestoßen. Das muss eine Art Experiment der Eisenzwerge gewesen sein.$B$BWir haben es wieder gesund gemacht und Ihr werdet feststellen, dass es nicht mehr so klein ist! Keiner von uns weiß viel über das Reiten von etwas anderem als Widdern und Maultieren und da wir euch für das was ihr da hinten gemacht habt etwas schuldig sind... Wir dachten Ihr würdet es vielleicht als Geschenk annehmen.$B$BEuer Brann Bronzebart'),
(2957,'esES','La gloria del asaltante de Ulduar','$gEstimado:Estimada; $n,$B$BEspero que estés bien y que hayas tenido tiempo de recuperarte de nuestras travesuras en Ulduar.$B$BMis muchachos del equipo de prospección se toparon con esta pobre cría de dragón de montar medio muerta. Debe haber sido un experimento de Enano de Hierro de algún tipo.$B$B¡Lo hemos cuidado para que recupere la salud y descubrirás que ya no es tan pequeño! Ninguno de nosotros sabe mucho acerca de montar otra cosa que no sean carneros y mulas de carga, y como te debíamos uno por lo que hiciste allí... Pensamos que quizás lo aceptarías como un regalo.$B$BTuyo,$BBrann Barbabronce'),
(2957,'esMX','La gloria del asaltante de Ulduar','$gEstimado:Estimada; $n,$B$BEspero que estés bien y que hayas tenido tiempo de recuperarte de nuestras travesuras en Ulduar.$B$BMis muchachos del equipo de prospección se toparon con esta pobre cría de dragón de montar medio muerta. Debe haber sido un experimento de Enano de Hierro de algún tipo.$B$B¡Lo hemos cuidado para que recupere la salud y descubrirás que ya no es tan pequeño! Ninguno de nosotros sabe mucho acerca de montar otra cosa que no sean carneros y mulas de carga, y como te debíamos uno por lo que hiciste allí... Pensamos que quizás lo aceptarías como un regalo.$B$BTuyo,$BBrann Barbabronce'),
(2957,'frFR','',NULL),
(2957,'zhCN','奥杜尔团队高手的荣耀','亲爱的$N$B$B我希望你能做的不错然后我们就能夺回对奥杜尔的控制权。$B$B我的那些来自探险者协会的小伙子们决定送你这只铁锈始祖幼龙作为你的奖励。$B$B我想你会很喜欢它吧。你们团队在奥杜尔的征程将铭记史册继续奋斗吧。$B$B布莱恩·铜须'),
(2958,'deDE','Heroisch: Ruhm des Schlachtzüglers von Ulduar','$GLieber:Liebe; $N,$B$BIch hoffe, dass es Euch gut geht und dass Ihr Zeit hattet Euch von unseren Mätzchen in Ulduar zu erholen.$B$BMeine Jungs vom Erkundungsteam sind auf dieses arme halbtote Reitdrachen-Jungtier gestoßen. Das muss eine Art Experiment der Eisenzwerge gewesen sein.$B$BWir haben es wieder gesund gemacht und Ihr werdet feststellen, dass es nicht mehr so klein ist! Keiner von uns weiß viel über das Reiten von etwas anderem als Widdern und Maultieren und da wir euch für das was ihr da hinten gemacht habt etwas schuldig sind... Wir dachten Ihr würdet es vielleicht als Geschenk annehmen.$B$BEuer Brann Bronzebart'),
(2958,'esES','La gloria del asaltante de Ulduar','$gEstimado:Estimada; $n,$B$BEspero que estés bien y que hayas tenido tiempo de recuperarte de nuestras travesuras en Ulduar.$B$BMis muchachos del equipo de prospección se toparon con esta pobre cría de dragón de montar medio muerta. Debe haber sido un experimento de Enano de Hierro de algún tipo.$B$B¡Lo hemos cuidado para que recupere la salud y descubrirás que ya no es tan pequeño! Ninguno de nosotros sabe mucho acerca de montar otra cosa que no sean carneros y mulas de carga, y como te debíamos uno por lo que hiciste allí... Pensamos que quizás lo aceptarías como un regalo.$B$BTuyo,$BBrann Barbabronce'),
(2958,'esMX','La gloria del asaltante de Ulduar','$gEstimado:Estimada; $n,$B$BEspero que estés bien y que hayas tenido tiempo de recuperarte de nuestras travesuras en Ulduar.$B$BMis muchachos del equipo de prospección se toparon con esta pobre cría de dragón de montar medio muerta. Debe haber sido un experimento de Enano de Hierro de algún tipo.$B$B¡Lo hemos cuidado para que recupere la salud y descubrirás que ya no es tan pequeño! Ninguno de nosotros sabe mucho acerca de montar otra cosa que no sean carneros y mulas de carga, y como te debíamos uno por lo que hiciste allí... Pensamos que quizás lo aceptarías como un regalo.$B$BTuyo,$BBrann Barbabronce'),
(2958,'frFR','',NULL),
(2958,'zhCN','英雄:奥杜尔团队高手的荣耀','亲爱的$N$B$B我希望你能做的不错然后我们就能夺回对奥杜尔的控制权。$B$B我的那些来自探险者协会的小伙子们决定送你这只铁缚始祖幼龙作为你的奖励。$B$B我想你会很喜欢它吧。你们团队在奥杜尔的征程将铭记史册继续奋斗吧。$B$B布莱恩·铜须'),
(3036,'frFR','',NULL),
(3037,'frFR','',NULL),
(3117,'frFR','',NULL),
(3259,'frFR','',NULL),
(3316,'frFR','',NULL),
(3478,'deDE','Der vergessene Puter','Könnt Ihr begreifen, wie es dieser fette Truthahn es lebendig durch den November geschaft hat?!$B$BAlle seine Freunde sind auf den reich gedeckten Tischen serviert worden. Mit Moosbeerenchutney und Gewürzbrotfüllung und... OOOH... jetzt bekomme ich Hunger. Egal! Er ist jetzt ganz allein. Deswegen habe ich überlegt, ob Ihr Euch vielleicht um Ihn kümmern würdet. In meinem Laden ist einfach nicht mehr genug Platz für ihn!$B$BHaltet ihn nur bitte von Kochstellen fern. Er bekommt in ihrer Nähe immer so einen merkwürdigen Blick...$B$B--Breanni'),
(3478,'esES','Un pavo aún no engullido','¿Puedes creer que este pavo regordete sobrevivió a noviembre?$B$BDado que todos sus amigos se han servido en abundantes mesas con salsa de arándanos y rellenos de pan con especias y... ooo... tengo hambre. ¡Pero de todos modos! Ahora está solo, así que esperaba que estuvieras dispuesto a cuidar de él. ¡Simplemente no queda suficiente espacio en mi tienda!$B$BMantenlo alejado de los fogones de cocina, por favor. Tiene esta extraña mirada en sus ojos alrededor de los fogones...'),
(3478,'esMX','Un pavo aún no engullido','¿Puedes creer que este pavo regordete sobrevivió a noviembre?$B$BDado que todos sus amigos se han servido en abundantes mesas con salsa de arándanos y rellenos de pan con especias y... ooo... tengo hambre. ¡Pero de todos modos! Ahora está solo, así que esperaba que estuvieras dispuesto a cuidar de él. ¡Simplemente no queda suficiente espacio en mi tienda!$B$BMantenlo alejado de los fogones de cocina, por favor. Tiene esta extraña mirada en sus ojos alrededor de los fogones...'),
(3478,'frFR','',NULL),
(3478,'zhCN','不会咕咕的火鸡!','你能相信是这只滚圆的火鸡让整个十一月都洋溢着节日的气氛吗?$B$B然后好多朋友聚集在丰盛的饭桌前上面放满了蔓越橘果酱、一片片切好的面包以及…哦哦哦…我感觉到自己都要流口水了但是它依然是孤零零的一只所以我希望你能好好地照顾它给它温暖—别吃掉它虽然它也不会占多少地方可是我店里早就已经拥挤不堪啦$B$B嗯记得让它远离烹饪用火因为那些小火在它眼里是一种特殊的存在…'),
(3656,'deDE','Der vergessene Puter','Könnt Ihr begreifen, wie es dieser fette Truthahn es lebendig durch den November geschaft hat?!$B$BAlle seine Freunde sind auf den reich gedeckten Tischen serviert worden. Mit Moosbeerenchutney und Gewürzbrotfüllung und... OOOH... jetzt bekomme ich Hunger. Egal! Er ist jetzt ganz allein. Deswegen habe ich überlegt, ob Ihr Euch vielleicht um Ihn kümmern würdet. In meinem Laden ist einfach nicht mehr genug Platz für ihn!$B$BHaltet ihn nur bitte von Kochstellen fern. Er bekommt in ihrer Nähe immer so einen merkwürdigen Blick...$B$B--Breanni'),
(3656,'esES','Un pavo aún no engullido','¿Puedes creer que este pavo regordete sobrevivió a noviembre?$B$BDado que todos sus amigos se han servido en abundantes mesas con salsa de arándanos y rellenos de pan con especias y... ooo... tengo hambre. ¡Pero de todos modos! Ahora está solo, así que esperaba que estuvieras dispuesto a cuidar de él. ¡Simplemente no queda suficiente espacio en mi tienda!$B$BMantenlo alejado de los fogones de cocina, por favor. Tiene esta extraña mirada en sus ojos alrededor de los fogones...'),
(3656,'esMX','Un pavo aún no engullido','¿Puedes creer que este pavo regordete sobrevivió a noviembre?$B$BDado que todos sus amigos se han servido en abundantes mesas con salsa de arándanos y rellenos de pan con especias y... ooo... tengo hambre. ¡Pero de todos modos! Ahora está solo, así que esperaba que estuvieras dispuesto a cuidar de él. ¡Simplemente no queda suficiente espacio en mi tienda!$B$BMantenlo alejado de los fogones de cocina, por favor. Tiene esta extraña mirada en sus ojos alrededor de los fogones...'),
(3656,'frFR','',NULL),
(3656,'zhCN','不会咕咕的火鸡!','你能相信是这只滚圆的火鸡让整个十一月都洋溢着节日的气氛吗?$B$B然后好多朋友聚集在丰盛的饭桌前上面放满了蔓越橘果酱、一片片切好的面包以及…哦哦哦…我感觉到自己都要流口水了但是它依然是孤零零的一只所以我希望你能好好地照顾它给它温暖—别吃掉它虽然它也不会占多少地方可是我店里早就已经拥挤不堪啦$B$B嗯记得让它远离烹饪用火因为那些小火在它眼里是一种特殊的存在…'),
(3857,'deDE','Meister der Insel der Eroberung','$GEhrenvoller:Ehrenvolle; $N,$B$BFür Eure Taten auf der Insel der Eroberung ist es mir eine Ehre Euch diesen Wappenrock zu überreichen. Tragt ihn mit Stolz.$B$BHochkommandant Halford Wyrmbann, 7. Legion'),
(3857,'esES','$gMaestro:Maestra; de la Isla de la Conquista','Honorable $N,$B$BPor tus hazañas en la Isla de la Conquista, es un honor para mí presentarte este tabardo. Úselo con orgullo.$B$BAlto Comandante, Séptima Legión'),
(3857,'esMX','$gMaestro:Maestra; de la Isla de la Conquista','Honorable $N,$B$BPor tus hazañas en la Isla de la Conquista, es un honor para mí presentarte este tabardo. Úselo con orgullo.$B$BAlto Comandante, Séptima Legión'),
(3857,'frFR','Maître de l\'île des Conquérants',NULL),
(3857,'zhCN','征服之岛的主人','荣耀属于你,$N$B$B你在征服之岛的英雄表现为我们军团做出了卓越的贡献为此送你这件战袍以示感谢。$B$B第七军团高阶指挥官'),
(3957,'deDE','Meister der Insel der Eroberung','$GEhrenvoller:Ehrenvolle; $N,$B$BFür Eure Taten auf der Insel der Eroberung ist es mir eine Ehre Euch diesen Wappenrock zu überreichen. Tragt ihn mit Stolz.$B$BOberanführer Agmar'),
(3957,'esES','$gMaestro:Maestra; de la Isla de la Conquista','Honorable $N,$B$BPor tus hazañas en la Isla de la Conquista, es un honor para mí presentarte este tabardo. Úselo con orgullo.$B$BAlto Comandante, Séptima Legión'),
(3957,'esMX','$gMaestro:Maestra; de la Isla de la Conquista','Honorable $N,$B$BPor tus hazañas en la Isla de la Conquista, es un honor para mí presentarte este tabardo. Úselo con orgullo.$B$BAlto Comandante, Séptima Legión'),
(3957,'frFR','Maître de l\'île des Conquérants',NULL),
(3957,'zhCN','征服之岛的主人','尊敬的$N,$B$B在征服之岛的战场上你英勇杀敌功绩卓着给你送上这件战袍是我的荣耀。$B$B奥格瑞玛大领主'),
(4078,'frFR','',NULL),
(4079,'deDE','Ein Tribut an die Unsterblichkeit','$GLieber:Liebe; $N,$B$BGeschichten über Eure jüngste Leistung in der Prüfung des obersten Kreuzfahrers werden noch lange Zeit erzählt und nacherzählt werden. Als der Argentumkreuzzug die größten Meister von Azeroth aufrief ihren Kampfgeist im Schmelztiegel des Kolosseums zu erproben, hoffte ich wider Erwarten, dass Leuchtfeuer wie Ihr und Eure Gefährten aus dem Kampf hervorgehen würden.$B$BWir werden Euch in der kommenden Schlacht gegen den Lichkönig dringend brauchen. Aber an diesem Tag solltet Ihr Euch freuen und Eure ruhmreiche Leistung feiern und dieses Geschenk eines unserer besten Schlachtrösser annehmen. Wenn die Geißel ihr Banner am Horizont auftauchen sieht, Held, wird ihr Ende nahe sein!$B$BMit freundlichen Grüßen,$BTirion Fordring'),
(4079,'esES','Un tributo a la inmortalidad','Estimado $n,$B$BLos relatos de su actuación reciente en la Prueba del Gran Cruzado se contarán y volverán a contar durante siglos. Mientras la Cruzada Argenta hizo un llamado a los más grandes campeones de Azeroth para que pusieran a prueba su temple en el crisol del Coliseo, esperaba contra toda esperanza que los faros de luz como tú y tus compañeros pudieran emerger de la refriega.$B$BTe necesitaremos desesperadamente en la próxima batalla contra el Rey Exánime. Pero en este día, regocíjate y celebra tu glorioso logro y acepta este regalo; uno de nuestros mejores caballos de guerra. ¡Cuando la Plaga vea su estandarte asomándose en el horizonte, $ghéroe:heroína;, su fin estará cerca!$B$BTuyo con honor,$BTirion Vadin'),
(4079,'esMX','Un tributo a la inmortalidad','Estimado $n,$B$BLos relatos de su actuación reciente en la Prueba del Gran Cruzado se contarán y volverán a contar durante siglos. Mientras la Cruzada Argenta hizo un llamado a los más grandes campeones de Azeroth para que pusieran a prueba su temple en el crisol del Coliseo, esperaba contra toda esperanza que los faros de luz como tú y tus compañeros pudieran emerger de la refriega.$B$BTe necesitaremos desesperadamente en la próxima batalla contra el Rey Exánime. Pero en este día, regocíjate y celebra tu glorioso logro y acepta este regalo; uno de nuestros mejores caballos de guerra. ¡Cuando la Plaga vea su estandarte asomándose en el horizonte, $ghéroe:heroína;, su fin estará cerca!$B$BTuyo con honor,$BTirion Vadin'),
(4079,'frFR','Une offrande à l\'immortalité',NULL),
(4079,'zhCN','对不朽的嘉奖','亲爱的$N$B$B你在大十字军竞技场的事迹这么久以来被反复传颂。大十字军竞技场是为了选拔以后进军冰冠城塞的勇士而设立的一座竞技场我希望有越来越多的勇士能在这座竞技场里脱颖而出然后直捣冰冠城塞。很显然你们引起了我的注意。$B$B我们需要你们的力量来对抗巫妖王。不过这么些天来你们一直在举办庆祝活动我也不好意思打扰你们现在把这匹最好的战马送给你当天灾军团看到竖立在它后边的银白十字军战旗时那胆战心惊的模样想必你也很乐意看到吧$B$B荣耀伴随着你$B提里奥·弗丁'),
(4080,'frFR','',NULL),
(4156,'deDE','Ein Tribut an die Unsterblichkeit','$GLieber:Liebe; $N,$B$BGeschichten über Eure jüngste Leistung in der Prüfung des obersten Kreuzfahrers werden noch lange Zeit erzählt und nacherzählt werden. Als der Argentumkreuzzug die größten Meister von Azeroth aufrief ihren Kampfgeist im Schmelztiegel des Kolosseums zu erproben, hoffte ich wider Erwarten, dass Leuchtfeuer wie Ihr und Eure Gefährten aus dem Kampf hervorgehen würden.$B$BWir werden Euch in der kommenden Schlacht gegen den Lichkönig dringend brauchen. Aber an diesem Tag solltet Ihr Euch freuen und Eure ruhmreiche Leistung feiern und dieses Geschenk eines unserer besten Schlachtrösser annehmen. Wenn die Geißel ihr Banner am Horizont auftauchen sieht, Held, wird ihr Ende nahe sein!$B$BMit freundlichen Grüßen,$BTirion Fordring'),
(4156,'esES','Un tributo a la inmortalidad','Estimado $n,$B$BLos relatos de su actuación reciente en la Prueba del Gran Cruzado se contarán y volverán a contar durante siglos. Mientras la Cruzada Argenta hizo un llamado a los más grandes campeones de Azeroth para que pusieran a prueba su temple en el crisol del Coliseo, esperaba contra toda esperanza que los faros de luz como tú y tus compañeros pudieran emerger de la refriega.$B$BTe necesitaremos desesperadamente en la próxima batalla contra el Rey Exánime. Pero en este día, regocíjate y celebra tu glorioso logro y acepta este regalo; uno de nuestros mejores caballos de guerra. ¡Cuando la Plaga vea su estandarte asomándose en el horizonte, $ghéroe:heroína;, su fin estará cerca!$B$BTuyo con honor,$BTirion Vadin'),
(4156,'esMX','Un tributo a la inmortalidad','Estimado $n,$B$BLos relatos de su actuación reciente en la Prueba del Gran Cruzado se contarán y volverán a contar durante siglos. Mientras la Cruzada Argenta hizo un llamado a los más grandes campeones de Azeroth para que pusieran a prueba su temple en el crisol del Coliseo, esperaba contra toda esperanza que los faros de luz como tú y tus compañeros pudieran emerger de la refriega.$B$BTe necesitaremos desesperadamente en la próxima batalla contra el Rey Exánime. Pero en este día, regocíjate y celebra tu glorioso logro y acepta este regalo; uno de nuestros mejores caballos de guerra. ¡Cuando la Plaga vea su estandarte asomándose en el horizonte, $ghéroe:heroína;, su fin estará cerca!$B$BTuyo con honor,$BTirion Vadin'),
(4156,'frFR','Une offrande à l\'immortalité',NULL),
(4156,'zhCN','对不朽的嘉奖','亲爱的$N$B$B你在大十字军竞技场的事迹这么久以来被反复传颂。大十字军竞技场是为了选拔以后进军冰冠城塞的勇士而设立的一座竞技场我希望有越来越多的勇士能在这座竞技场里脱颖而出然后直捣冰冠城塞。很显然你们引起了我的注意。$B$B我们需要你们的力量来对抗巫妖王。不过这么些天来你们一直在举办庆祝活动我也不好意思打扰你们现在把这匹最好的战马送给你当天灾军团看到竖立在它后边的银白十字军战旗时那胆战心惊的模样想必你也很乐意看到吧$B$B荣耀伴随着你$B提里奥·弗丁'),
(4477,'frFR','',NULL),
(4478,'deDE','Streuner','Werter Meister der Geduld, wir möchten Eure Beharrlichkeit belohnen, mit der Ihr immer wieder Dungeons mit Leuten betretet, die Ihr wahrscheinlich noch nie zuvor getroffen habt. Hoffentlich habt Ihr ein paar Jungspunden zeigen können, wie der Hase läuft.$B$BLange Rede, kurzer Sinn. Wir haben zufällig gehört, dass Ihr mit Zufallsgruppen herumstreunt. Und wie der Zufall so will ist hier also ein kleiner Streuner, den wir Euch zufallen lassen, um mit Euch zu streunen, während Ihr zufälligen Zufällen zufallt, oder so.$B$BKnuddels.$B$BDas Entwickler-Team von WoW'),
(4478,'esES','P.U.G.','Estimado individuo muy paciente,$B$BNos gustaría reconocer su tenacidad en la gestión de mazmorras con personas que probablemente no haya conocido antes. Con suerte, incluso les enseñaste a algunos novatos las cuerdas en tus grupos de recogida.$B$BEn resumen, escuchamos que te gustan los pugs. Así que aquí tienes un pug para tu pug, para que puedas pug mientras pug. O algo.$B$BAbrazos,$B$BTus amigos del equipo de desarrollo de WoW.'),
(4478,'esMX','P.U.G.','Estimado individuo muy paciente,$B$BNos gustaría reconocer su tenacidad en la gestión de mazmorras con personas que probablemente no haya conocido antes. Con suerte, incluso les enseñaste a algunos novatos las cuerdas en tus grupos de recogida.$B$BEn resumen, escuchamos que te gustan los pugs. Así que aquí tienes un pug para tu pug, para que puedas pug mientras pug. O algo.$B$BAbrazos,$B$BTus amigos del equipo de desarrollo de WoW.'),
(4478,'frFR','Groupe improvisé','$gCher membre assidu:Chère membre assidue;,\n\nnous aimerions récompenser votre ténacité à parcourir les donjons avec des personnes que vous n\'aviez probablement jamais rencontrées auparavant. Vous avez peut-être même appris les ficelles du métier à quelques petits nouveaux.\n\nBref, nous avons entendu dire que vous aimiez les groupes improvisés. Alors voici le petit Groopy, qui proclamera à tout le monde : « Vous savez quoi ? J\'suis groupé ! »\n\nAvec toute notre affection,\n\nVos amis de l\'équipe de développement de WoW'),
(4478,'zhCN','活泼的地雷犬','非常有耐心的冒险者,$B$B你在地城中和或许以前连面都没见过的伙伴一同战斗的事情我们已经知道了我们很高兴还有你这样的人存在希望你能在以后的地城旅行中能和伙伴们处理好关系一定要和谐哦。$B$B长话短说吧为了奖励你在地城中的行为无论你以前在地城中什么样希望你在以后能认真对待每一个副本和朋友。嗯先送你一只地雷犬吧它是一个很活泼的狗狗。$B$B拥抱你$B$B你在魔兽世界开发组里的朋友'),
(4530,'frFR','',NULL),
(4530,'zhCN','冰封王座10人','勇士们,你们在冰封王座上摧毁了巫妖王,黯刃骑士团佩服你们,这是我们给你的礼物!'),
(4583,'frFR','',NULL),
(4583,'zhCN','冰河踏破者','勇士们,你们在冰封王座上摧毁了巫妖王,黯刃骑士团佩服你们,这是我们给你的礼物!'),
(4584,'frFR','',NULL),
(4584,'zhCN','黎明之光','勇士们,你们在冰封王座上摧毁了巫妖王,黯刃骑士团佩服你们,这是我们给你的礼物!'),
(4597,'frFR','',NULL),
(4597,'zhCN','冰封王座25人','勇士们,你们在冰封王座上摧毁了巫妖王,黯刃骑士团佩服你们,这是我们给你的礼物!'),
(4598,'frFR','',NULL),
(4602,'deDE','Ruhm des Schlachtzüglers von Eiskrone','$N,$B$BAls der Einfluss des Lichkönigs schwand, haben sich einige seiner mächtigeren Schergen aus seinem Griff befreit.$B$BDieser von meinen Männern gefangen genommene Frostwyrm Drache ist ein Paradebeispiel dafür. Sie hat einen eigenen Willen und noch mehr.$B$BEiner meiner Männer verlor einen Arm als er sie einritt, aber sie kann jetzt recht gut mit Reitern umgehen - vorausgesetzt Ihr seid geschickt und habt einen starken Willen.$B$BBitte nehmt diese prächtige Bestie als Geschenk der Ritter der Schwarzen Klinge an. Es war mir eine Ehre, an Eurer Seite in der größten aller Schlachten zu kämpfen.$B$BHochachtungsvoll,$BDarion Mograine.'),
(4602,'esES','La gloria del asaltante de Corona de Hielo','$n,$B$BA medida que la influencia del Rey Exánime se desvanece, algunos de sus secuaces más poderosos se han liberado de sus manos.$B$BEste dragón vermis de hielo que mis hombres capturaron es un excelente ejemplo. Ella tiene voluntad propia y algo más.$B$BUno de mis hombres perdió un brazo al domarla, pero ahora se adapta bastante bien a los jinetes, siempre que ellos mismos sean hábiles y de voluntad fuerte.$B$BAcepta esta magnífica bestia como regalo de los Caballeros de la Espada de Ébano. Fue un honor luchar a tu lado en esta gran batalla.$B$BCon honor,$BDarion Mograine.'),
(4602,'esMX','La gloria del asaltante de Corona de Hielo','$n,$B$BA medida que la influencia del Rey Exánime se desvanece, algunos de sus secuaces más poderosos se han liberado de sus manos.$B$BEste dragón vermis de hielo que mis hombres capturaron es un excelente ejemplo. Ella tiene voluntad propia y algo más.$B$BUno de mis hombres perdió un brazo al domarla, pero ahora se adapta bastante bien a los jinetes, siempre que ellos mismos sean hábiles y de voluntad fuerte.$B$BAcepta esta magnífica bestia como regalo de los Caballeros de la Espada de Ébano. Fue un honor luchar a tu lado en esta gran batalla.$B$BCon honor,$BDarion Mograine.'),
(4602,'frFR','',NULL),
(4602,'zhCN','冰河踏破者的荣耀10人','$N,$B$B当巫妖王的影响力日渐薄弱的时候有不少昔日在他麾下很强力的人脱离了他的控制。$B$B这只被我们捕获的冰霜巨龙就是一个很好的例子。它有强烈的自主意识并且我们还有更多的这种巨龙。$B$B我们当中的一个人虽然在一次战斗中光荣地失去了一只胳膊不过依然能很好的驾驭它。—很明显它被驯服的很好并且给了他们自信。$B$B请接受这只来自黑锋骑士团的礼物在这场伟大的战斗中有你们陪同真的很荣幸。$B$B荣誉属于你们。$B达利安·莫格莱尼'),
(4603,'deDE','Ruhm des Schlachtzüglers von Eiskrone','$N,$B$BAls der Einfluss des Lichkönigs schwand, haben sich einige seiner mächtigeren Schergen aus seinem Griff befreit.$B$BDieser von meinen Männern gefangen genommene Frostwyrm Drache ist ein Paradebeispiel dafür. Sie hat einen eigenen Willen und noch mehr.$B$BEiner meiner Männer verlor einen Arm als er sie einritt, aber sie kann jetzt recht gut mit Reitern umgehen - vorausgesetzt Ihr seid geschickt und habt einen starken Willen.$B$BBitte nehmt diese prächtige Bestie als Geschenk der Ritter der Schwarzen Klinge an. Es war mir eine Ehre, an Eurer Seite in der größten aller Schlachten zu kämpfen.$B$BHochachtungsvoll,$BDarion Mograine.'),
(4603,'esES','La gloria del asaltante de Corona de Hielo','$n,$B$BA medida que la influencia del Rey Exánime se desvanece, algunos de sus secuaces más poderosos se han liberado de sus manos.$B$BEste dragón vermis de hielo que mis hombres capturaron es un excelente ejemplo. Ella tiene voluntad propia y algo más.$B$BUno de mis hombres perdió un brazo al domarla, pero ahora se adapta bastante bien a los jinetes, siempre que ellos mismos sean hábiles y de voluntad fuerte.$B$BAcepta esta magnífica bestia como regalo de los Caballeros de la Espada de Ébano. Fue un honor luchar a tu lado en esta gran batalla.$B$BCon honor,$BDarion Mograine.'),
(4603,'esMX','La gloria del asaltante de Corona de Hielo','$n,$B$BA medida que la influencia del Rey Exánime se desvanece, algunos de sus secuaces más poderosos se han liberado de sus manos.$B$BEste dragón vermis de hielo que mis hombres capturaron es un excelente ejemplo. Ella tiene voluntad propia y algo más.$B$BUno de mis hombres perdió un brazo al domarla, pero ahora se adapta bastante bien a los jinetes, siempre que ellos mismos sean hábiles y de voluntad fuerte.$B$BAcepta esta magnífica bestia como regalo de los Caballeros de la Espada de Ébano. Fue un honor luchar a tu lado en esta gran batalla.$B$BCon honor,$BDarion Mograine.'),
(4603,'frFR','Gloire à l\'écumeur de raids de la Couronne de glace',NULL),
(4603,'zhCN','冰河踏破者的荣耀25人','$N,$B$B当巫妖王的影响力日渐薄弱的时候有不少昔日在他麾下很强力的人脱离了他的控制。$B$B这只被我们捕获的冰霜巨龙就是一个很好的例子。它有强烈的自主意识并且我们还有更多的这种巨龙。$B$B我们当中的一个人虽然在一次战斗中光荣地失去了一只胳膊不过依然能很好的驾驭它。—很明显它被驯服的很好并且给了他们自信。$B$B请接受这只来自黑锋骑士团的礼物在这场伟大的战斗中有你们陪同真的很荣幸。$B$B荣誉属于你们。$B达利安·莫格莱尼'),
(4784,'deDE','Emblem Rüstmeister in Dalaran\'s Silbernen Enklave','Eure Erfolge in Nordend sind nicht unbemerkt geblieben, Freund.$B$BDie verdienten Embleme können benutzt werden, um Gegenstände bei den verschiedenen Rüstmeistern für Embleme zu kaufen.$B$BIhr findet uns in der Silbernen Enklave, wo jede Emblemart einen eigenen Rüstmeister hat.$B$BWir freuen uns auf Eure Ankunft!'),
(4784,'esES','Intendente de emblemas en el Enclave de Plata de Dalaran','Tus logros en Rasganorte no han pasado desapercibidos, amigo.$B$BLos emblemas que hayas ganado se pueden usar para comprar equipo de los distintos Intendente de emblemas en Dalaran.$B$BPuede encontrarnos en el Enclave de Plata, donde cada variedad de emblema tiene su propio intendente.$B$B¡Esperamos tu llegada!'),
(4784,'esMX','Intendente de emblemas en el Enclave de Plata de Dalaran','Tus logros en Rasganorte no han pasado desapercibidos, amigo.$B$BLos emblemas que hayas ganado se pueden usar para comprar equipo de los distintos Intendente de emblemas en Dalaran.$B$BPuede encontrarnos en el Enclave de Plata, donde cada variedad de emblema tiene su propio intendente.$B$B¡Esperamos tu llegada!'),
(4784,'frFR','',NULL),
(4784,'zhCN','银色盟约的纹章收集者','朋友,你在诺森德所取得的成就令人不得不注目。$B$B你所获取的每枚纹章都能在达拉然兑换到各种强力的装备然后武装自己不是件很快乐的事么$B$B我们就在达拉然的银色盟约在那儿每种纹章都有对应的兑换师来看看吧。$B$B我们期待你的到来'),
(4785,'deDE','Emblem Rüstmeister in Dalaran\'s Sonnenhäschers Zuflucht','Eure Erfolge in Nordend sind nicht unbemerkt geblieben, Freund.$B$BDie verdienten Embleme können benutzt werden, um Gegenstände bei den verschiedenen Rüstmeistern für Embleme zu kaufen.$B$BIhr findet uns in Sonnenhäschers Zuflucht, wo jede Emblemart einen eigenen Rüstmeister hat.$B$BWir freuen uns auf Eure Ankunft!'),
(4785,'esES','Intendente de emblemas en el Santuario Atracasol de Dalaran','Tus logros en Rasganorte no han pasado desapercibidos, amigo.$B$BLos emblemas que hayas ganado se pueden usar para comprar equipo de los distintos Intendente de emblemas en Dalaran.$B$BPuede encontrarnos en el Santuario Atracasol, donde cada variedad de emblema tiene su propio intendente.$B$B¡Esperamos tu llegada!'),
(4785,'esMX','Intendente de emblemas en el Santuario Atracasol de Dalaran','Tus logros en Rasganorte no han pasado desapercibidos, amigo.$B$BLos emblemas que hayas ganado se pueden usar para comprar equipo de los distintos Intendente de emblemas en Dalaran.$B$BPuede encontrarnos en el Santuario Atracasol, donde cada variedad de emblema tiene su propio intendente.$B$B¡Esperamos tu llegada!'),
(4785,'frFR','',NULL),
(4785,'zhCN','达拉然夺日者圣堂的纹章收集者','朋友,你在诺森德所取得的成就让人不得不注意。$B$B你所获取的每枚纹章都能在达拉然换取对应的装备武装自己来更强大不是每个人都乐意的么$B$B在达拉然的夺日者圣堂你能找到每一种纹章所对应的兑换师在他的身上你能收获许多。$B$B期待你的到来');
/*!40000 ALTER TABLE `achievement_reward_locale` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

Some files were not shown because too many files have changed in this diff Show more