diff options
| author | Ovahlord <dreadkiller@gmx.de> | 2023-11-15 13:48:54 +0100 |
|---|---|---|
| committer | Ovahlord <dreadkiller@gmx.de> | 2023-11-15 13:50:09 +0100 |
| commit | 2a5703aff685392d3db90a22a811804293f2f568 (patch) | |
| tree | 67d7db636f8a547f8a3f339cf2e6f5b0b46cc889 | |
| parent | 68818009a63885942880c64c350bff6ac69f782a (diff) | |
Core/DataStores: fixed db2 structures and updated hotfix tables
| -rw-r--r-- | sql/updates/hotfixes/3.4.x/2023_11_15_00_hotfixes.sql | 13731 | ||||
| -rw-r--r-- | src/server/database/Database/Implementation/HotfixDatabase.cpp | 490 | ||||
| -rw-r--r-- | src/server/database/Database/Implementation/HotfixDatabase.h | 45 | ||||
| -rw-r--r-- | src/server/game/DataStores/DB2LoadInfo.h | 160 | ||||
| -rw-r--r-- | src/server/game/DataStores/DB2Stores.cpp | 14 | ||||
| -rw-r--r-- | src/server/game/DataStores/DB2Structure.h | 130 | ||||
| -rw-r--r-- | src/server/game/DataStores/DBCEnums.h | 6 |
7 files changed, 14093 insertions, 483 deletions
diff --git a/sql/updates/hotfixes/3.4.x/2023_11_15_00_hotfixes.sql b/sql/updates/hotfixes/3.4.x/2023_11_15_00_hotfixes.sql new file mode 100644 index 00000000000..5275cc44d73 --- /dev/null +++ b/sql/updates/hotfixes/3.4.x/2023_11_15_00_hotfixes.sql @@ -0,0 +1,13731 @@ +-- +-- Table structure for table `achievement` +-- + +DROP TABLE IF EXISTS `achievement`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `achievement` ( + `Description` text, + `Title` text, + `Reward` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `InstanceID` smallint(6) NOT NULL DEFAULT '0', + `Faction` tinyint(4) NOT NULL DEFAULT '0', + `Supercedes` smallint(6) NOT NULL DEFAULT '0', + `Category` smallint(6) NOT NULL DEFAULT '0', + `MinimumCriteria` tinyint(4) NOT NULL DEFAULT '0', + `Points` tinyint(4) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `UiOrder` smallint(6) NOT NULL DEFAULT '0', + `IconFileID` int(11) NOT NULL DEFAULT '0', + `CriteriaTree` int(10) unsigned NOT NULL DEFAULT '0', + `SharesCriteria` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `achievement` +-- + +LOCK TABLES `achievement` WRITE; +/*!40000 ALTER TABLE `achievement` DISABLE KEYS */; +/*!40000 ALTER TABLE `achievement` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `achievement_locale` +-- + +DROP TABLE IF EXISTS `achievement_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `achievement_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `Title_lang` text, + `Reward_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `achievement_locale` +-- + +LOCK TABLES `achievement_locale` WRITE; +/*!40000 ALTER TABLE `achievement_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `achievement_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `achievement_category` +-- + +DROP TABLE IF EXISTS `achievement_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `achievement_category` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Parent` smallint(6) NOT NULL DEFAULT '0', + `UiOrder` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `achievement_category` +-- + +LOCK TABLES `achievement_category` WRITE; +/*!40000 ALTER TABLE `achievement_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `achievement_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `achievement_category_locale` +-- + +DROP TABLE IF EXISTS `achievement_category_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `achievement_category_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `achievement_category_locale` +-- + +LOCK TABLES `achievement_category_locale` WRITE; +/*!40000 ALTER TABLE `achievement_category_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `achievement_category_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `adventure_journal` +-- + +DROP TABLE IF EXISTS `adventure_journal`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `adventure_journal` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `ButtonText` text, + `RewardDescription` text, + `ContinueDescription` text, + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ButtonActionType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TextureFileDataID` int(11) NOT NULL DEFAULT '0', + `LfgDungeonID` smallint(5) unsigned NOT NULL DEFAULT '0', + `QuestID` int(10) unsigned NOT NULL DEFAULT '0', + `BattleMasterListID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PriorityMin` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PriorityMax` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `ItemQuantity` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyType` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyQuantity` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiMapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `BonusPlayerConditionID1` int(10) unsigned NOT NULL DEFAULT '0', + `BonusPlayerConditionID2` int(10) unsigned NOT NULL DEFAULT '0', + `BonusValue1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BonusValue2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `adventure_journal` +-- + +LOCK TABLES `adventure_journal` WRITE; +/*!40000 ALTER TABLE `adventure_journal` DISABLE KEYS */; +/*!40000 ALTER TABLE `adventure_journal` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `adventure_journal_locale` +-- + +DROP TABLE IF EXISTS `adventure_journal_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `adventure_journal_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `ButtonText_lang` text, + `RewardDescription_lang` text, + `ContinueDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `adventure_journal_locale` +-- + +LOCK TABLES `adventure_journal_locale` WRITE; +/*!40000 ALTER TABLE `adventure_journal_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `adventure_journal_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `adventure_map_poi` +-- + +DROP TABLE IF EXISTS `adventure_map_poi`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `adventure_map_poi` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Title` text, + `Description` text, + `WorldPositionX` float NOT NULL DEFAULT '0', + `WorldPositionY` float NOT NULL DEFAULT '0', + `Type` tinyint(4) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `QuestID` int(10) unsigned NOT NULL DEFAULT '0', + `LfgDungeonID` int(10) unsigned NOT NULL DEFAULT '0', + `RewardItemID` int(11) NOT NULL DEFAULT '0', + `UiTextureAtlasMemberID` int(10) unsigned NOT NULL DEFAULT '0', + `UiTextureKitID` int(10) unsigned NOT NULL DEFAULT '0', + `MapID` int(11) NOT NULL DEFAULT '0', + `AreaTableID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `adventure_map_poi` +-- + +LOCK TABLES `adventure_map_poi` WRITE; +/*!40000 ALTER TABLE `adventure_map_poi` DISABLE KEYS */; +/*!40000 ALTER TABLE `adventure_map_poi` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `adventure_map_poi_locale` +-- + +DROP TABLE IF EXISTS `adventure_map_poi_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `adventure_map_poi_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Title_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `adventure_map_poi_locale` +-- + +LOCK TABLES `adventure_map_poi_locale` WRITE; +/*!40000 ALTER TABLE `adventure_map_poi_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `adventure_map_poi_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `animation_data` +-- + +DROP TABLE IF EXISTS `animation_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `animation_data` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Fallback` smallint(5) unsigned NOT NULL DEFAULT '0', + `BehaviorTier` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BehaviorID` int(11) NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `animation_data` +-- + +LOCK TABLES `animation_data` WRITE; +/*!40000 ALTER TABLE `animation_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `animation_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `anim_kit` +-- + +DROP TABLE IF EXISTS `anim_kit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `anim_kit` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OneShotDuration` int(10) unsigned NOT NULL DEFAULT '0', + `OneShotStopAnimKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `LowDefAnimKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `anim_kit` +-- + +LOCK TABLES `anim_kit` WRITE; +/*!40000 ALTER TABLE `anim_kit` DISABLE KEYS */; +/*!40000 ALTER TABLE `anim_kit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `area_group_member` +-- + +DROP TABLE IF EXISTS `area_group_member`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `area_group_member` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AreaID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `area_group_member` +-- + +LOCK TABLES `area_group_member` WRITE; +/*!40000 ALTER TABLE `area_group_member` DISABLE KEYS */; +/*!40000 ALTER TABLE `area_group_member` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `area_table` +-- + +DROP TABLE IF EXISTS `area_table`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `area_table` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ZoneName` text, + `AreaName` text, + `ContinentID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ParentAreaID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaBit` smallint(6) NOT NULL DEFAULT '0', + `SoundProviderPref` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundProviderPrefUnderwater` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AmbienceID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwAmbience` smallint(5) unsigned NOT NULL DEFAULT '0', + `ZoneMusic` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwZoneMusic` smallint(5) unsigned NOT NULL DEFAULT '0', + `ExplorationLevel` tinyint(4) NOT NULL DEFAULT '0', + `IntroSound` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwIntroSound` int(10) unsigned NOT NULL DEFAULT '0', + `FactionGroupMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AmbientMultiplier` float NOT NULL DEFAULT '0', + `MountFlags` int(11) NOT NULL DEFAULT '0', + `PvpCombatWorldStateID` smallint(6) NOT NULL DEFAULT '0', + `WildBattlePetLevelMin` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WildBattlePetLevelMax` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WindSettingsID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `LiquidTypeID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `LiquidTypeID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `LiquidTypeID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `LiquidTypeID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `area_table` +-- + +LOCK TABLES `area_table` WRITE; +/*!40000 ALTER TABLE `area_table` DISABLE KEYS */; +/*!40000 ALTER TABLE `area_table` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `area_table_locale` +-- + +DROP TABLE IF EXISTS `area_table_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `area_table_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `AreaName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `area_table_locale` +-- + +LOCK TABLES `area_table_locale` WRITE; +/*!40000 ALTER TABLE `area_table_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `area_table_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `area_trigger` +-- + +DROP TABLE IF EXISTS `area_trigger`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `area_trigger` ( + `Message` text, + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PosZ` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ContinentID` smallint(6) NOT NULL DEFAULT '0', + `PhaseUseFlags` tinyint(4) NOT NULL DEFAULT '0', + `PhaseID` smallint(6) NOT NULL DEFAULT '0', + `PhaseGroupID` smallint(6) NOT NULL DEFAULT '0', + `Radius` float NOT NULL DEFAULT '0', + `BoxLength` float NOT NULL DEFAULT '0', + `BoxWidth` float NOT NULL DEFAULT '0', + `BoxHeight` float NOT NULL DEFAULT '0', + `BoxYaw` float NOT NULL DEFAULT '0', + `ShapeType` tinyint(4) NOT NULL DEFAULT '0', + `ShapeID` smallint(6) NOT NULL DEFAULT '0', + `AreaTriggerActionSetID` smallint(6) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `area_trigger` +-- + +LOCK TABLES `area_trigger` WRITE; +/*!40000 ALTER TABLE `area_trigger` DISABLE KEYS */; +/*!40000 ALTER TABLE `area_trigger` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `area_trigger_locale` +-- + +DROP TABLE IF EXISTS `area_trigger_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `area_trigger_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Message_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `area_trigger_locale` +-- + +LOCK TABLES `area_trigger_locale` WRITE; +/*!40000 ALTER TABLE `area_trigger_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `area_trigger_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `armor_location` +-- + +DROP TABLE IF EXISTS `armor_location`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `armor_location` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Clothmodifier` float NOT NULL DEFAULT '0', + `Leathermodifier` float NOT NULL DEFAULT '0', + `Chainmodifier` float NOT NULL DEFAULT '0', + `Platemodifier` float NOT NULL DEFAULT '0', + `Modifier` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `armor_location` +-- + +LOCK TABLES `armor_location` WRITE; +/*!40000 ALTER TABLE `armor_location` DISABLE KEYS */; +/*!40000 ALTER TABLE `armor_location` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact` +-- + +DROP TABLE IF EXISTS `artifact`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiNameColor` int(11) NOT NULL DEFAULT '0', + `UiBarOverlayColor` int(11) NOT NULL DEFAULT '0', + `UiBarBackgroundColor` int(11) NOT NULL DEFAULT '0', + `ChrSpecializationID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ArtifactCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiModelSceneID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualKitID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact` +-- + +LOCK TABLES `artifact` WRITE; +/*!40000 ALTER TABLE `artifact` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_locale` +-- + +DROP TABLE IF EXISTS `artifact_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_locale` +-- + +LOCK TABLES `artifact_locale` WRITE; +/*!40000 ALTER TABLE `artifact_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_appearance` +-- + +DROP TABLE IF EXISTS `artifact_appearance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_appearance` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ArtifactAppearanceSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `DisplayIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UnlockPlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemAppearanceModifierID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiSwatchColor` int(11) NOT NULL DEFAULT '0', + `UiModelSaturation` float NOT NULL DEFAULT '0', + `UiModelOpacity` float NOT NULL DEFAULT '0', + `OverrideShapeshiftFormID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OverrideShapeshiftDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `UiItemAppearanceID` int(10) unsigned NOT NULL DEFAULT '0', + `UiAltItemAppearanceID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiCameraID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_appearance` +-- + +LOCK TABLES `artifact_appearance` WRITE; +/*!40000 ALTER TABLE `artifact_appearance` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_appearance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_appearance_locale` +-- + +DROP TABLE IF EXISTS `artifact_appearance_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_appearance_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_appearance_locale` +-- + +LOCK TABLES `artifact_appearance_locale` WRITE; +/*!40000 ALTER TABLE `artifact_appearance_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_appearance_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_appearance_set` +-- + +DROP TABLE IF EXISTS `artifact_appearance_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_appearance_set` ( + `Name` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DisplayIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiCameraID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AltHandUICameraID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ForgeAttachmentOverride` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ArtifactID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_appearance_set` +-- + +LOCK TABLES `artifact_appearance_set` WRITE; +/*!40000 ALTER TABLE `artifact_appearance_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_appearance_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_appearance_set_locale` +-- + +DROP TABLE IF EXISTS `artifact_appearance_set_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_appearance_set_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_appearance_set_locale` +-- + +LOCK TABLES `artifact_appearance_set_locale` WRITE; +/*!40000 ALTER TABLE `artifact_appearance_set_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_appearance_set_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_category` +-- + +DROP TABLE IF EXISTS `artifact_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_category` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `XpMultCurrencyID` smallint(6) NOT NULL DEFAULT '0', + `XpMultCurveID` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_category` +-- + +LOCK TABLES `artifact_category` WRITE; +/*!40000 ALTER TABLE `artifact_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_power` +-- + +DROP TABLE IF EXISTS `artifact_power`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_power` ( + `DisplayPosX` float NOT NULL DEFAULT '0', + `DisplayPosY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ArtifactID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxPurchasableRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Label` int(11) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Tier` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_power` +-- + +LOCK TABLES `artifact_power` WRITE; +/*!40000 ALTER TABLE `artifact_power` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_power` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_power_link` +-- + +DROP TABLE IF EXISTS `artifact_power_link`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_power_link` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PowerA` smallint(5) unsigned NOT NULL DEFAULT '0', + `PowerB` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_power_link` +-- + +LOCK TABLES `artifact_power_link` WRITE; +/*!40000 ALTER TABLE `artifact_power_link` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_power_link` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_power_picker` +-- + +DROP TABLE IF EXISTS `artifact_power_picker`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_power_picker` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_power_picker` +-- + +LOCK TABLES `artifact_power_picker` WRITE; +/*!40000 ALTER TABLE `artifact_power_picker` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_power_picker` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_power_rank` +-- + +DROP TABLE IF EXISTS `artifact_power_rank`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_power_rank` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RankIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `ItemBonusListID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AuraPointsOverride` float NOT NULL DEFAULT '0', + `ArtifactPowerID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_power_rank` +-- + +LOCK TABLES `artifact_power_rank` WRITE; +/*!40000 ALTER TABLE `artifact_power_rank` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_power_rank` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_quest_xp` +-- + +DROP TABLE IF EXISTS `artifact_quest_xp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_quest_xp` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty1` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty2` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty3` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty4` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty5` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty6` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty7` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty8` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty9` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty10` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_quest_xp` +-- + +LOCK TABLES `artifact_quest_xp` WRITE; +/*!40000 ALTER TABLE `artifact_quest_xp` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_quest_xp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_tier` +-- + +DROP TABLE IF EXISTS `artifact_tier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_tier` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ArtifactTier` int(10) unsigned NOT NULL DEFAULT '0', + `MaxNumTraits` int(10) unsigned NOT NULL DEFAULT '0', + `MaxArtifactKnowledge` int(10) unsigned NOT NULL DEFAULT '0', + `KnowledgePlayerCondition` int(10) unsigned NOT NULL DEFAULT '0', + `MinimumEmpowerKnowledge` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_tier` +-- + +LOCK TABLES `artifact_tier` WRITE; +/*!40000 ALTER TABLE `artifact_tier` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_tier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `artifact_unlock` +-- + +DROP TABLE IF EXISTS `artifact_unlock`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `artifact_unlock` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PowerID` int(10) unsigned NOT NULL DEFAULT '0', + `PowerRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemBonusListID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `ArtifactID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `artifact_unlock` +-- + +LOCK TABLES `artifact_unlock` WRITE; +/*!40000 ALTER TABLE `artifact_unlock` DISABLE KEYS */; +/*!40000 ALTER TABLE `artifact_unlock` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auction_house` +-- + +DROP TABLE IF EXISTS `auction_house`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auction_house` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `FactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `DepositRate` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ConsignmentRate` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auction_house` +-- + +LOCK TABLES `auction_house` WRITE; +/*!40000 ALTER TABLE `auction_house` DISABLE KEYS */; +/*!40000 ALTER TABLE `auction_house` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `auction_house_locale` +-- + +DROP TABLE IF EXISTS `auction_house_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `auction_house_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `auction_house_locale` +-- + +LOCK TABLES `auction_house_locale` WRITE; +/*!40000 ALTER TABLE `auction_house_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `auction_house_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_empowered_item` +-- + +DROP TABLE IF EXISTS `azerite_empowered_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_empowered_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `AzeriteTierUnlockSetID` int(10) unsigned NOT NULL DEFAULT '0', + `AzeritePowerSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_empowered_item` +-- + +LOCK TABLES `azerite_empowered_item` WRITE; +/*!40000 ALTER TABLE `azerite_empowered_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_empowered_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_essence` +-- + +DROP TABLE IF EXISTS `azerite_essence`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_essence` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `SpecSetID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_essence` +-- + +LOCK TABLES `azerite_essence` WRITE; +/*!40000 ALTER TABLE `azerite_essence` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_essence` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_essence_locale` +-- + +DROP TABLE IF EXISTS `azerite_essence_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_essence_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_essence_locale` +-- + +LOCK TABLES `azerite_essence_locale` WRITE; +/*!40000 ALTER TABLE `azerite_essence_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_essence_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_essence_power` +-- + +DROP TABLE IF EXISTS `azerite_essence_power`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_essence_power` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SourceAlliance` text, + `SourceHorde` text, + `AzeriteEssenceID` int(11) NOT NULL DEFAULT '0', + `Tier` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MajorPowerDescription` int(11) NOT NULL DEFAULT '0', + `MinorPowerDescription` int(11) NOT NULL DEFAULT '0', + `MajorPowerActual` int(11) NOT NULL DEFAULT '0', + `MinorPowerActual` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_essence_power` +-- + +LOCK TABLES `azerite_essence_power` WRITE; +/*!40000 ALTER TABLE `azerite_essence_power` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_essence_power` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_essence_power_locale` +-- + +DROP TABLE IF EXISTS `azerite_essence_power_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_essence_power_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `SourceAlliance_lang` text, + `SourceHorde_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_essence_power_locale` +-- + +LOCK TABLES `azerite_essence_power_locale` WRITE; +/*!40000 ALTER TABLE `azerite_essence_power_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_essence_power_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_item` +-- + +DROP TABLE IF EXISTS `azerite_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_item` +-- + +LOCK TABLES `azerite_item` WRITE; +/*!40000 ALTER TABLE `azerite_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_item_milestone_power` +-- + +DROP TABLE IF EXISTS `azerite_item_milestone_power`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_item_milestone_power` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredLevel` int(11) NOT NULL DEFAULT '0', + `AzeritePowerID` int(11) NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '0', + `AutoUnlock` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_item_milestone_power` +-- + +LOCK TABLES `azerite_item_milestone_power` WRITE; +/*!40000 ALTER TABLE `azerite_item_milestone_power` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_item_milestone_power` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_knowledge_multiplier` +-- + +DROP TABLE IF EXISTS `azerite_knowledge_multiplier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_knowledge_multiplier` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Multiplier` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_knowledge_multiplier` +-- + +LOCK TABLES `azerite_knowledge_multiplier` WRITE; +/*!40000 ALTER TABLE `azerite_knowledge_multiplier` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_knowledge_multiplier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_level_info` +-- + +DROP TABLE IF EXISTS `azerite_level_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_level_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `BaseExperienceToNextLevel` bigint(20) unsigned NOT NULL DEFAULT '0', + `MinimumExperienceToNextLevel` bigint(20) unsigned NOT NULL DEFAULT '0', + `ItemLevel` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_level_info` +-- + +LOCK TABLES `azerite_level_info` WRITE; +/*!40000 ALTER TABLE `azerite_level_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_level_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_power` +-- + +DROP TABLE IF EXISTS `azerite_power`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_power` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `ItemBonusListID` int(11) NOT NULL DEFAULT '0', + `SpecSetID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_power` +-- + +LOCK TABLES `azerite_power` WRITE; +/*!40000 ALTER TABLE `azerite_power` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_power` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_power_set_member` +-- + +DROP TABLE IF EXISTS `azerite_power_set_member`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_power_set_member` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AzeritePowerSetID` int(10) unsigned NOT NULL DEFAULT '0', + `AzeritePowerID` int(11) NOT NULL DEFAULT '0', + `Class` int(11) NOT NULL DEFAULT '0', + `Tier` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_power_set_member` +-- + +LOCK TABLES `azerite_power_set_member` WRITE; +/*!40000 ALTER TABLE `azerite_power_set_member` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_power_set_member` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_tier_unlock` +-- + +DROP TABLE IF EXISTS `azerite_tier_unlock`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_tier_unlock` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemCreationContext` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Tier` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AzeriteLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AzeriteTierUnlockSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_tier_unlock` +-- + +LOCK TABLES `azerite_tier_unlock` WRITE; +/*!40000 ALTER TABLE `azerite_tier_unlock` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_tier_unlock` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `azerite_tier_unlock_set` +-- + +DROP TABLE IF EXISTS `azerite_tier_unlock_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `azerite_tier_unlock_set` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `azerite_tier_unlock_set` +-- + +LOCK TABLES `azerite_tier_unlock_set` WRITE; +/*!40000 ALTER TABLE `azerite_tier_unlock_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `azerite_tier_unlock_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `bank_bag_slot_prices` +-- + +DROP TABLE IF EXISTS `bank_bag_slot_prices`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `bank_bag_slot_prices` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Cost` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `bank_bag_slot_prices` +-- + +LOCK TABLES `bank_bag_slot_prices` WRITE; +/*!40000 ALTER TABLE `bank_bag_slot_prices` DISABLE KEYS */; +/*!40000 ALTER TABLE `bank_bag_slot_prices` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `banned_addons` +-- + +DROP TABLE IF EXISTS `banned_addons`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `banned_addons` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Version` text, + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `banned_addons` +-- + +LOCK TABLES `banned_addons` WRITE; +/*!40000 ALTER TABLE `banned_addons` DISABLE KEYS */; +/*!40000 ALTER TABLE `banned_addons` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `barber_shop_style` +-- + +DROP TABLE IF EXISTS `barber_shop_style`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `barber_shop_style` ( + `DisplayName` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CostModifier` float NOT NULL DEFAULT '0', + `Race` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Sex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Data` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `barber_shop_style` +-- + +LOCK TABLES `barber_shop_style` WRITE; +/*!40000 ALTER TABLE `barber_shop_style` DISABLE KEYS */; +/*!40000 ALTER TABLE `barber_shop_style` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `barber_shop_style_locale` +-- + +DROP TABLE IF EXISTS `barber_shop_style_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `barber_shop_style_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `DisplayName_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `barber_shop_style_locale` +-- + +LOCK TABLES `barber_shop_style_locale` WRITE; +/*!40000 ALTER TABLE `barber_shop_style_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `barber_shop_style_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_ability` +-- + +DROP TABLE IF EXISTS `battle_pet_ability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_ability` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `PetTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `Cooldown` int(10) unsigned NOT NULL DEFAULT '0', + `BattlePetVisualID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_ability` +-- + +LOCK TABLES `battle_pet_ability` WRITE; +/*!40000 ALTER TABLE `battle_pet_ability` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_ability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_ability_locale` +-- + +DROP TABLE IF EXISTS `battle_pet_ability_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_ability_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_ability_locale` +-- + +LOCK TABLES `battle_pet_ability_locale` WRITE; +/*!40000 ALTER TABLE `battle_pet_ability_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_ability_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_breed_quality` +-- + +DROP TABLE IF EXISTS `battle_pet_breed_quality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_breed_quality` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `StateMultiplier` float NOT NULL DEFAULT '0', + `QualityEnum` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_breed_quality` +-- + +LOCK TABLES `battle_pet_breed_quality` WRITE; +/*!40000 ALTER TABLE `battle_pet_breed_quality` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_breed_quality` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_breed_state` +-- + +DROP TABLE IF EXISTS `battle_pet_breed_state`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_breed_state` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `BattlePetStateID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Value` smallint(5) unsigned NOT NULL DEFAULT '0', + `BattlePetBreedID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_breed_state` +-- + +LOCK TABLES `battle_pet_breed_state` WRITE; +/*!40000 ALTER TABLE `battle_pet_breed_state` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_breed_state` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_species` +-- + +DROP TABLE IF EXISTS `battle_pet_species`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_species` ( + `Description` text, + `SourceText` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureID` int(11) NOT NULL DEFAULT '0', + `SummonSpellID` int(11) NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `PetTypeEnum` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `SourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `CardUIModelSceneID` int(11) NOT NULL DEFAULT '0', + `LoadoutUIModelSceneID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_species` +-- + +LOCK TABLES `battle_pet_species` WRITE; +/*!40000 ALTER TABLE `battle_pet_species` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_species` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_species_locale` +-- + +DROP TABLE IF EXISTS `battle_pet_species_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_species_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `SourceText_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_species_locale` +-- + +LOCK TABLES `battle_pet_species_locale` WRITE; +/*!40000 ALTER TABLE `battle_pet_species_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_species_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battle_pet_species_state` +-- + +DROP TABLE IF EXISTS `battle_pet_species_state`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battle_pet_species_state` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `BattlePetStateID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Value` int(11) NOT NULL DEFAULT '0', + `BattlePetSpeciesID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battle_pet_species_state` +-- + +LOCK TABLES `battle_pet_species_state` WRITE; +/*!40000 ALTER TABLE `battle_pet_species_state` DISABLE KEYS */; +/*!40000 ALTER TABLE `battle_pet_species_state` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battlemaster_list` +-- + +DROP TABLE IF EXISTS `battlemaster_list`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battlemaster_list` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `GameType` text, + `ShortDescription` text, + `LongDescription` text, + `InstanceType` tinyint(4) NOT NULL DEFAULT '0', + `MinLevel` tinyint(4) NOT NULL DEFAULT '0', + `MaxLevel` tinyint(4) NOT NULL DEFAULT '0', + `RatedPlayers` tinyint(4) NOT NULL DEFAULT '0', + `MinPlayers` tinyint(4) NOT NULL DEFAULT '0', + `MaxPlayers` int(11) NOT NULL DEFAULT '0', + `GroupsAllowed` tinyint(4) NOT NULL DEFAULT '0', + `MaxGroupSize` tinyint(4) NOT NULL DEFAULT '0', + `HolidayWorldState` smallint(6) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `RequiredPlayerConditionID` int(11) NOT NULL DEFAULT '0', + `MapID1` smallint(6) NOT NULL DEFAULT '0', + `MapID2` smallint(6) NOT NULL DEFAULT '0', + `MapID3` smallint(6) NOT NULL DEFAULT '0', + `MapID4` smallint(6) NOT NULL DEFAULT '0', + `MapID5` smallint(6) NOT NULL DEFAULT '0', + `MapID6` smallint(6) NOT NULL DEFAULT '0', + `MapID7` smallint(6) NOT NULL DEFAULT '0', + `MapID8` smallint(6) NOT NULL DEFAULT '0', + `MapID9` smallint(6) NOT NULL DEFAULT '0', + `MapID10` smallint(6) NOT NULL DEFAULT '0', + `MapID11` smallint(6) NOT NULL DEFAULT '0', + `MapID12` smallint(6) NOT NULL DEFAULT '0', + `MapID13` smallint(6) NOT NULL DEFAULT '0', + `MapID14` smallint(6) NOT NULL DEFAULT '0', + `MapID15` smallint(6) NOT NULL DEFAULT '0', + `MapID16` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battlemaster_list` +-- + +LOCK TABLES `battlemaster_list` WRITE; +/*!40000 ALTER TABLE `battlemaster_list` DISABLE KEYS */; +/*!40000 ALTER TABLE `battlemaster_list` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `battlemaster_list_locale` +-- + +DROP TABLE IF EXISTS `battlemaster_list_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `battlemaster_list_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `GameType_lang` text, + `ShortDescription_lang` text, + `LongDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `battlemaster_list_locale` +-- + +LOCK TABLES `battlemaster_list_locale` WRITE; +/*!40000 ALTER TABLE `battlemaster_list_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `battlemaster_list_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `broadcast_text` +-- + +DROP TABLE IF EXISTS `broadcast_text`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `broadcast_text` ( + `Text` text, + `Text1` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `LanguageID` int(11) NOT NULL DEFAULT '0', + `ConditionID` int(11) NOT NULL DEFAULT '0', + `EmotesID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ChatBubbleDurationMs` int(10) unsigned NOT NULL DEFAULT '0', + `VoiceOverPriorityID` int(11) NOT NULL DEFAULT '0', + `SoundKitID1` int(10) unsigned NOT NULL DEFAULT '0', + `SoundKitID2` int(10) unsigned NOT NULL DEFAULT '0', + `EmoteID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `EmoteID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `EmoteID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `EmoteDelay1` smallint(5) unsigned NOT NULL DEFAULT '0', + `EmoteDelay2` smallint(5) unsigned NOT NULL DEFAULT '0', + `EmoteDelay3` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `broadcast_text` +-- + +LOCK TABLES `broadcast_text` WRITE; +/*!40000 ALTER TABLE `broadcast_text` DISABLE KEYS */; +/*!40000 ALTER TABLE `broadcast_text` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `broadcast_text_locale` +-- + +DROP TABLE IF EXISTS `broadcast_text_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `broadcast_text_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Text_lang` text, + `Text1_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `broadcast_text_locale` +-- + +LOCK TABLES `broadcast_text_locale` WRITE; +/*!40000 ALTER TABLE `broadcast_text_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `broadcast_text_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cfg_categories` +-- + +DROP TABLE IF EXISTS `cfg_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cfg_categories` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `LocaleMask` smallint(5) unsigned NOT NULL DEFAULT '0', + `CreateCharsetMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExistingCharsetMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Order` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cfg_categories` +-- + +LOCK TABLES `cfg_categories` WRITE; +/*!40000 ALTER TABLE `cfg_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `cfg_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cfg_categories_locale` +-- + +DROP TABLE IF EXISTS `cfg_categories_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cfg_categories_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cfg_categories_locale` +-- + +LOCK TABLES `cfg_categories_locale` WRITE; +/*!40000 ALTER TABLE `cfg_categories_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `cfg_categories_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cfg_regions` +-- + +DROP TABLE IF EXISTS `cfg_regions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cfg_regions` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Tag` text, + `RegionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Raidorigin` int(10) unsigned NOT NULL DEFAULT '0', + `RegionGroupMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ChallengeOrigin` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cfg_regions` +-- + +LOCK TABLES `cfg_regions` WRITE; +/*!40000 ALTER TABLE `cfg_regions` DISABLE KEYS */; +/*!40000 ALTER TABLE `cfg_regions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `char_titles` +-- + +DROP TABLE IF EXISTS `char_titles`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `char_titles` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Name1` text, + `MaskID` smallint(6) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `char_titles` +-- + +LOCK TABLES `char_titles` WRITE; +/*!40000 ALTER TABLE `char_titles` DISABLE KEYS */; +/*!40000 ALTER TABLE `char_titles` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `char_titles_locale` +-- + +DROP TABLE IF EXISTS `char_titles_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `char_titles_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Name1_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `char_titles_locale` +-- + +LOCK TABLES `char_titles_locale` WRITE; +/*!40000 ALTER TABLE `char_titles_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `char_titles_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `character_loadout` +-- + +DROP TABLE IF EXISTS `character_loadout`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `character_loadout` ( + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrClassID` tinyint(4) NOT NULL DEFAULT '0', + `Purpose` int(11) NOT NULL DEFAULT '0', + `ItemContext` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `character_loadout` +-- + +LOCK TABLES `character_loadout` WRITE; +/*!40000 ALTER TABLE `character_loadout` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_loadout` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `character_loadout_item` +-- + +DROP TABLE IF EXISTS `character_loadout_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `character_loadout_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CharacterLoadoutID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `character_loadout_item` +-- + +LOCK TABLES `character_loadout_item` WRITE; +/*!40000 ALTER TABLE `character_loadout_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_loadout_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chat_channels` +-- + +DROP TABLE IF EXISTS `chat_channels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chat_channels` ( + `Name` text, + `Shortcut` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `FactionGroup` tinyint(4) NOT NULL DEFAULT '0', + `Ruleset` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chat_channels` +-- + +LOCK TABLES `chat_channels` WRITE; +/*!40000 ALTER TABLE `chat_channels` DISABLE KEYS */; +/*!40000 ALTER TABLE `chat_channels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chat_channels_locale` +-- + +DROP TABLE IF EXISTS `chat_channels_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chat_channels_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Shortcut_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chat_channels_locale` +-- + +LOCK TABLES `chat_channels_locale` WRITE; +/*!40000 ALTER TABLE `chat_channels_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chat_channels_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_class_ui_display` +-- + +DROP TABLE IF EXISTS `chr_class_ui_display`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_class_ui_display` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrClassesID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AdvGuidePlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `SplashPlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_class_ui_display` +-- + +LOCK TABLES `chr_class_ui_display` WRITE; +/*!40000 ALTER TABLE `chr_class_ui_display` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_class_ui_display` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_classes` +-- + +DROP TABLE IF EXISTS `chr_classes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_classes` ( + `Name` text, + `Filename` text, + `NameMale` text, + `NameFemale` text, + `PetNameToken` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CreateScreenFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `SelectScreenFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `LowResScreenFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `StartingLevel` int(11) NOT NULL DEFAULT '0', + `ArmorTypeMask` int(10) unsigned NOT NULL DEFAULT '0', + `CinematicSequenceID` smallint(5) unsigned NOT NULL DEFAULT '0', + `DefaultSpec` smallint(5) unsigned NOT NULL DEFAULT '0', + `HasStrengthAttackBonus` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PrimaryStatPriority` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DisplayPower` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RangedAttackPowerPerAgility` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AttackPowerPerAgility` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AttackPowerPerStrength` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellClassSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RolesMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageBonusStat` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HasRelicSlot` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_classes` +-- + +LOCK TABLES `chr_classes` WRITE; +/*!40000 ALTER TABLE `chr_classes` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_classes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_classes_locale` +-- + +DROP TABLE IF EXISTS `chr_classes_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_classes_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `NameMale_lang` text, + `NameFemale_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_classes_locale` +-- + +LOCK TABLES `chr_classes_locale` WRITE; +/*!40000 ALTER TABLE `chr_classes_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_classes_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_classes_x_power_types` +-- + +DROP TABLE IF EXISTS `chr_classes_x_power_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_classes_x_power_types` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PowerType` tinyint(4) NOT NULL DEFAULT '0', + `ClassID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_classes_x_power_types` +-- + +LOCK TABLES `chr_classes_x_power_types` WRITE; +/*!40000 ALTER TABLE `chr_classes_x_power_types` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_classes_x_power_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_choice` +-- + +DROP TABLE IF EXISTS `chr_customization_choice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_choice` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrCustomizationOptionID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationReqID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationVisReqID` int(11) NOT NULL DEFAULT '0', + `SortOrder` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiOrderIndex` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `AddedInPatch` int(11) NOT NULL DEFAULT '0', + `SoundKitID` int(11) NOT NULL DEFAULT '0', + `SwatchColor1` int(11) NOT NULL DEFAULT '0', + `SwatchColor2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_choice` +-- + +LOCK TABLES `chr_customization_choice` WRITE; +/*!40000 ALTER TABLE `chr_customization_choice` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_choice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_choice_locale` +-- + +DROP TABLE IF EXISTS `chr_customization_choice_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_choice_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_choice_locale` +-- + +LOCK TABLES `chr_customization_choice_locale` WRITE; +/*!40000 ALTER TABLE `chr_customization_choice_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_choice_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_display_info` +-- + +DROP TABLE IF EXISTS `chr_customization_display_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_display_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ShapeshiftFormID` int(11) NOT NULL DEFAULT '0', + `DisplayID` int(11) NOT NULL DEFAULT '0', + `BarberShopMinCameraDistance` float NOT NULL DEFAULT '0', + `BarberShopHeightOffset` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_display_info` +-- + +LOCK TABLES `chr_customization_display_info` WRITE; +/*!40000 ALTER TABLE `chr_customization_display_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_display_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_element` +-- + +DROP TABLE IF EXISTS `chr_customization_element`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_element` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrCustomizationChoiceID` int(11) NOT NULL DEFAULT '0', + `RelatedChrCustomizationChoiceID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationGeosetID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationSkinnedModelID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationMaterialID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationBoneSetID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationCondModelID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationDisplayInfoID` int(11) NOT NULL DEFAULT '0', + `ChrCustItemGeoModifyID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationVoiceID` int(11) NOT NULL DEFAULT '0', + `AnimKitID` int(11) NOT NULL DEFAULT '0', + `ParticleColorID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_element` +-- + +LOCK TABLES `chr_customization_element` WRITE; +/*!40000 ALTER TABLE `chr_customization_element` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_element` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_option` +-- + +DROP TABLE IF EXISTS `chr_customization_option`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_option` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SecondaryID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ChrModelID` int(11) NOT NULL DEFAULT '0', + `SortIndex` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationCategoryID` int(11) NOT NULL DEFAULT '0', + `OptionType` int(11) NOT NULL DEFAULT '0', + `BarberShopCostModifier` float NOT NULL DEFAULT '0', + `ChrCustomizationID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationReqID` int(11) NOT NULL DEFAULT '0', + `UiOrderIndex` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_option` +-- + +LOCK TABLES `chr_customization_option` WRITE; +/*!40000 ALTER TABLE `chr_customization_option` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_option` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_option_locale` +-- + +DROP TABLE IF EXISTS `chr_customization_option_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_option_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_option_locale` +-- + +LOCK TABLES `chr_customization_option_locale` WRITE; +/*!40000 ALTER TABLE `chr_customization_option_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_option_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_req` +-- + +DROP TABLE IF EXISTS `chr_customization_req`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_req` ( + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `ReqSource` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `AchievementID` int(11) NOT NULL DEFAULT '0', + `QuestID` int(11) NOT NULL DEFAULT '0', + `OverrideArchive` int(11) NOT NULL DEFAULT '0', + `ItemModifiedAppearanceID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_req` +-- + +LOCK TABLES `chr_customization_req` WRITE; +/*!40000 ALTER TABLE `chr_customization_req` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_req` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_req_locale` +-- + +DROP TABLE IF EXISTS `chr_customization_req_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_req_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `ReqSource_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_req_locale` +-- + +LOCK TABLES `chr_customization_req_locale` WRITE; +/*!40000 ALTER TABLE `chr_customization_req_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_req_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_customization_req_choice` +-- + +DROP TABLE IF EXISTS `chr_customization_req_choice`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_customization_req_choice` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrCustomizationChoiceID` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationReqID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_customization_req_choice` +-- + +LOCK TABLES `chr_customization_req_choice` WRITE; +/*!40000 ALTER TABLE `chr_customization_req_choice` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_customization_req_choice` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_model` +-- + +DROP TABLE IF EXISTS `chr_model`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_model` ( + `FaceCustomizationOffset1` float NOT NULL DEFAULT '0', + `FaceCustomizationOffset2` float NOT NULL DEFAULT '0', + `FaceCustomizationOffset3` float NOT NULL DEFAULT '0', + `CustomizeOffset1` float NOT NULL DEFAULT '0', + `CustomizeOffset2` float NOT NULL DEFAULT '0', + `CustomizeOffset3` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Sex` tinyint(4) NOT NULL DEFAULT '0', + `DisplayID` int(11) NOT NULL DEFAULT '0', + `CharComponentTextureLayoutID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `SkeletonFileDataID` int(11) NOT NULL DEFAULT '0', + `ModelFallbackChrModelID` int(11) NOT NULL DEFAULT '0', + `TextureFallbackChrModelID` int(11) NOT NULL DEFAULT '0', + `HelmVisFallbackChrModelID` int(11) NOT NULL DEFAULT '0', + `CustomizeScale` float NOT NULL DEFAULT '0', + `CustomizeFacing` float NOT NULL DEFAULT '0', + `CameraDistanceOffset` float NOT NULL DEFAULT '0', + `BarberShopCameraOffsetScale` float NOT NULL DEFAULT '0', + `BarberShopCameraHeightOffsetScale` float NOT NULL DEFAULT '0', + `BarberShopCameraRotationOffset` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_model` +-- + +LOCK TABLES `chr_model` WRITE; +/*!40000 ALTER TABLE `chr_model` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_model` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_race_x_chr_model` +-- + +DROP TABLE IF EXISTS `chr_race_x_chr_model`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_race_x_chr_model` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrRacesID` int(11) NOT NULL DEFAULT '0', + `ChrModelID` int(11) NOT NULL DEFAULT '0', + `Sex` int(11) NOT NULL DEFAULT '0', + `AllowedTransmogSlots` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_race_x_chr_model` +-- + +LOCK TABLES `chr_race_x_chr_model` WRITE; +/*!40000 ALTER TABLE `chr_race_x_chr_model` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_race_x_chr_model` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_races` +-- + +DROP TABLE IF EXISTS `chr_races`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_races` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClientPrefix` text, + `ClientFileString` text, + `Name` text, + `NameFemale` text, + `NameLowercase` text, + `NameFemaleLowercase` text, + `LoreName` text, + `LoreNameFemale` text, + `LoreNameLower` text, + `LoreNameLowerFemale` text, + `LoreDescription` text, + `ShortName` text, + `ShortNameFemale` text, + `ShortNameLower` text, + `ShortNameLowerFemale` text, + `Flags` int(11) NOT NULL DEFAULT '0', + `MaleDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `FemaleDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `HighResMaleDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `HighResFemaleDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `ResSicknessSpellID` int(11) NOT NULL DEFAULT '0', + `SplashSoundID` int(11) NOT NULL DEFAULT '0', + `CreateScreenFileDataID` int(11) NOT NULL DEFAULT '0', + `SelectScreenFileDataID` int(11) NOT NULL DEFAULT '0', + `LowResScreenFileDataID` int(11) NOT NULL DEFAULT '0', + `AlteredFormStartVisualKitID1` int(10) unsigned NOT NULL DEFAULT '0', + `AlteredFormStartVisualKitID2` int(10) unsigned NOT NULL DEFAULT '0', + `AlteredFormStartVisualKitID3` int(10) unsigned NOT NULL DEFAULT '0', + `AlteredFormFinishVisualKitID1` int(10) unsigned NOT NULL DEFAULT '0', + `AlteredFormFinishVisualKitID2` int(10) unsigned NOT NULL DEFAULT '0', + `AlteredFormFinishVisualKitID3` int(10) unsigned NOT NULL DEFAULT '0', + `HeritageArmorAchievementID` int(11) NOT NULL DEFAULT '0', + `StartingLevel` int(11) NOT NULL DEFAULT '0', + `UiDisplayOrder` int(11) NOT NULL DEFAULT '0', + `PlayableRaceBit` int(11) NOT NULL DEFAULT '0', + `FemaleSkeletonFileDataID` int(11) NOT NULL DEFAULT '0', + `MaleSkeletonFileDataID` int(11) NOT NULL DEFAULT '0', + `HelmetAnimScalingRaceID` int(11) NOT NULL DEFAULT '0', + `TransmogrifyDisabledSlotMask` int(11) NOT NULL DEFAULT '0', + `AlteredFormCustomizeOffsetFallback1` float NOT NULL DEFAULT '0', + `AlteredFormCustomizeOffsetFallback2` float NOT NULL DEFAULT '0', + `AlteredFormCustomizeOffsetFallback3` float NOT NULL DEFAULT '0', + `AlteredFormCustomizeRotationFallback` float NOT NULL DEFAULT '0', + `Unknown910_11` float NOT NULL DEFAULT '0', + `Unknown910_12` float NOT NULL DEFAULT '0', + `Unknown910_13` float NOT NULL DEFAULT '0', + `Unknown910_21` float NOT NULL DEFAULT '0', + `Unknown910_22` float NOT NULL DEFAULT '0', + `Unknown910_23` float NOT NULL DEFAULT '0', + `FactionID` smallint(6) NOT NULL DEFAULT '0', + `CinematicSequenceID` smallint(6) NOT NULL DEFAULT '0', + `BaseLanguage` tinyint(4) NOT NULL DEFAULT '0', + `CreatureType` tinyint(4) NOT NULL DEFAULT '0', + `Alliance` tinyint(4) NOT NULL DEFAULT '0', + `RaceRelated` tinyint(4) NOT NULL DEFAULT '0', + `UnalteredVisualRaceID` tinyint(4) NOT NULL DEFAULT '0', + `DefaultClassID` tinyint(4) NOT NULL DEFAULT '0', + `NeutralRaceID` tinyint(4) NOT NULL DEFAULT '0', + `MaleModelFallbackRaceID` tinyint(4) NOT NULL DEFAULT '0', + `MaleModelFallbackSex` tinyint(4) NOT NULL DEFAULT '0', + `FemaleModelFallbackRaceID` tinyint(4) NOT NULL DEFAULT '0', + `FemaleModelFallbackSex` tinyint(4) NOT NULL DEFAULT '0', + `MaleTextureFallbackRaceID` tinyint(4) NOT NULL DEFAULT '0', + `MaleTextureFallbackSex` tinyint(4) NOT NULL DEFAULT '0', + `FemaleTextureFallbackRaceID` tinyint(4) NOT NULL DEFAULT '0', + `FemaleTextureFallbackSex` tinyint(4) NOT NULL DEFAULT '0', + `UnalteredVisualCustomizationRaceID` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_races` +-- + +LOCK TABLES `chr_races` WRITE; +/*!40000 ALTER TABLE `chr_races` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_races` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_races_locale` +-- + +DROP TABLE IF EXISTS `chr_races_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_races_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `NameFemale_lang` text, + `NameLowercase_lang` text, + `NameFemaleLowercase_lang` text, + `LoreName_lang` text, + `LoreNameFemale_lang` text, + `LoreNameLower_lang` text, + `LoreNameLowerFemale_lang` text, + `LoreDescription_lang` text, + `ShortName_lang` text, + `ShortNameFemale_lang` text, + `ShortNameLower_lang` text, + `ShortNameLowerFemale_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_races_locale` +-- + +LOCK TABLES `chr_races_locale` WRITE; +/*!40000 ALTER TABLE `chr_races_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_races_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_specialization` +-- + +DROP TABLE IF EXISTS `chr_specialization`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_specialization` ( + `Name` text, + `FemaleName` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(4) NOT NULL DEFAULT '0', + `PetTalentType` tinyint(4) NOT NULL DEFAULT '0', + `Role` tinyint(4) NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `SpellIconFileID` int(11) NOT NULL DEFAULT '0', + `PrimaryStatPriority` tinyint(4) NOT NULL DEFAULT '0', + `AnimReplacements` int(11) NOT NULL DEFAULT '0', + `MasterySpellID1` int(11) NOT NULL DEFAULT '0', + `MasterySpellID2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_specialization` +-- + +LOCK TABLES `chr_specialization` WRITE; +/*!40000 ALTER TABLE `chr_specialization` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_specialization` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `chr_specialization_locale` +-- + +DROP TABLE IF EXISTS `chr_specialization_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `chr_specialization_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `FemaleName_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `chr_specialization_locale` +-- + +LOCK TABLES `chr_specialization_locale` WRITE; +/*!40000 ALTER TABLE `chr_specialization_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `chr_specialization_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cinematic_camera` +-- + +DROP TABLE IF EXISTS `cinematic_camera`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cinematic_camera` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OriginX` float NOT NULL DEFAULT '0', + `OriginY` float NOT NULL DEFAULT '0', + `OriginZ` float NOT NULL DEFAULT '0', + `SoundID` int(10) unsigned NOT NULL DEFAULT '0', + `OriginFacing` float NOT NULL DEFAULT '0', + `FileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cinematic_camera` +-- + +LOCK TABLES `cinematic_camera` WRITE; +/*!40000 ALTER TABLE `cinematic_camera` DISABLE KEYS */; +/*!40000 ALTER TABLE `cinematic_camera` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `cinematic_sequences` +-- + +DROP TABLE IF EXISTS `cinematic_sequences`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `cinematic_sequences` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SoundID` int(10) unsigned NOT NULL DEFAULT '0', + `Camera1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Camera8` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `cinematic_sequences` +-- + +LOCK TABLES `cinematic_sequences` WRITE; +/*!40000 ALTER TABLE `cinematic_sequences` DISABLE KEYS */; +/*!40000 ALTER TABLE `cinematic_sequences` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conditional_chr_model` +-- + +DROP TABLE IF EXISTS `conditional_chr_model`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `conditional_chr_model` ( + `ID` int(11) NOT NULL DEFAULT '0', + `ChrModelID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrCustomizationReqID` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ChrCustomizationCategoryID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conditional_chr_model` +-- + +LOCK TABLES `conditional_chr_model` WRITE; +/*!40000 ALTER TABLE `conditional_chr_model` DISABLE KEYS */; +/*!40000 ALTER TABLE `conditional_chr_model` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conditional_content_tuning` +-- + +DROP TABLE IF EXISTS `conditional_content_tuning`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `conditional_content_tuning` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `RedirectContentTuningID` int(11) NOT NULL DEFAULT '0', + `RedirectFlag` int(11) NOT NULL DEFAULT '0', + `ParentContentTuningID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conditional_content_tuning` +-- + +LOCK TABLES `conditional_content_tuning` WRITE; +/*!40000 ALTER TABLE `conditional_content_tuning` DISABLE KEYS */; +/*!40000 ALTER TABLE `conditional_content_tuning` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `content_tuning` +-- + +DROP TABLE IF EXISTS `content_tuning`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `content_tuning` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MinLevel` int(11) NOT NULL DEFAULT '0', + `MaxLevel` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ExpectedStatModID` int(11) NOT NULL DEFAULT '0', + `DifficultyESMID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `content_tuning` +-- + +LOCK TABLES `content_tuning` WRITE; +/*!40000 ALTER TABLE `content_tuning` DISABLE KEYS */; +/*!40000 ALTER TABLE `content_tuning` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `conversation_line` +-- + +DROP TABLE IF EXISTS `conversation_line`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `conversation_line` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `BroadcastTextID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualKitID` int(10) unsigned NOT NULL DEFAULT '0', + `AdditionalDuration` int(11) NOT NULL DEFAULT '0', + `NextConversationLineID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AnimKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpeechType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `StartAnimation` tinyint(3) unsigned NOT NULL DEFAULT '0', + `EndAnimation` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `conversation_line` +-- + +LOCK TABLES `conversation_line` WRITE; +/*!40000 ALTER TABLE `conversation_line` DISABLE KEYS */; +/*!40000 ALTER TABLE `conversation_line` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_display_info` +-- + +DROP TABLE IF EXISTS `creature_display_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_display_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ModelID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SoundID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SizeClass` tinyint(4) NOT NULL DEFAULT '0', + `CreatureModelScale` float NOT NULL DEFAULT '0', + `CreatureModelAlpha` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BloodID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExtendedDisplayInfoID` int(11) NOT NULL DEFAULT '0', + `NPCSoundID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ParticleColorID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PortraitCreatureDisplayInfoID` int(11) NOT NULL DEFAULT '0', + `PortraitTextureFileDataID` int(11) NOT NULL DEFAULT '0', + `ObjectEffectPackageID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AnimReplacementSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `StateSpellVisualKitID` int(11) NOT NULL DEFAULT '0', + `PlayerOverrideScale` float NOT NULL DEFAULT '0', + `PetInstanceScale` float NOT NULL DEFAULT '0', + `UnarmedWeaponType` tinyint(4) NOT NULL DEFAULT '0', + `MountPoofSpellVisualKitID` int(11) NOT NULL DEFAULT '0', + `DissolveEffectID` int(11) NOT NULL DEFAULT '0', + `Gender` tinyint(4) NOT NULL DEFAULT '0', + `DissolveOutEffectID` int(11) NOT NULL DEFAULT '0', + `CreatureModelMinLod` tinyint(4) NOT NULL DEFAULT '0', + `TextureVariationFileDataID1` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileDataID2` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileDataID3` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileDataID4` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_display_info` +-- + +LOCK TABLES `creature_display_info` WRITE; +/*!40000 ALTER TABLE `creature_display_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_display_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_display_info_extra` +-- + +DROP TABLE IF EXISTS `creature_display_info_extra`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_display_info_extra` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DisplayRaceID` tinyint(4) NOT NULL DEFAULT '0', + `DisplaySexID` tinyint(4) NOT NULL DEFAULT '0', + `DisplayClassID` tinyint(4) NOT NULL DEFAULT '0', + `SkinID` tinyint(4) NOT NULL DEFAULT '0', + `FaceID` tinyint(4) NOT NULL DEFAULT '0', + `HairStyleID` tinyint(4) NOT NULL DEFAULT '0', + `HairColorID` tinyint(4) NOT NULL DEFAULT '0', + `FacialHairID` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `BakeMaterialResourcesID` int(11) NOT NULL DEFAULT '0', + `HDBakeMaterialResourcesID` int(11) NOT NULL DEFAULT '0', + `CustomDisplayOption1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CustomDisplayOption2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CustomDisplayOption3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_display_info_extra` +-- + +LOCK TABLES `creature_display_info_extra` WRITE; +/*!40000 ALTER TABLE `creature_display_info_extra` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_display_info_extra` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_family` +-- + +DROP TABLE IF EXISTS `creature_family`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_family` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `MinScale` float NOT NULL DEFAULT '0', + `MinScaleLevel` tinyint(4) NOT NULL DEFAULT '0', + `MaxScale` float NOT NULL DEFAULT '0', + `MaxScaleLevel` tinyint(4) NOT NULL DEFAULT '0', + `PetFoodMask` smallint(6) NOT NULL DEFAULT '0', + `PetTalentType` tinyint(4) NOT NULL DEFAULT '0', + `CategoryEnumID` int(11) NOT NULL DEFAULT '0', + `IconFileID` int(11) NOT NULL DEFAULT '0', + `SkillLine1` smallint(6) NOT NULL DEFAULT '0', + `SkillLine2` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_family` +-- + +LOCK TABLES `creature_family` WRITE; +/*!40000 ALTER TABLE `creature_family` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_family` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_family_locale` +-- + +DROP TABLE IF EXISTS `creature_family_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_family_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_family_locale` +-- + +LOCK TABLES `creature_family_locale` WRITE; +/*!40000 ALTER TABLE `creature_family_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_family_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_model_data` +-- + +DROP TABLE IF EXISTS `creature_model_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_model_data` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GeoBox1` float NOT NULL DEFAULT '0', + `GeoBox2` float NOT NULL DEFAULT '0', + `GeoBox3` float NOT NULL DEFAULT '0', + `GeoBox4` float NOT NULL DEFAULT '0', + `GeoBox5` float NOT NULL DEFAULT '0', + `GeoBox6` float NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `FileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `BloodID` int(10) unsigned NOT NULL DEFAULT '0', + `FootprintTextureID` int(10) unsigned NOT NULL DEFAULT '0', + `FootprintTextureLength` float NOT NULL DEFAULT '0', + `FootprintTextureWidth` float NOT NULL DEFAULT '0', + `FootprintParticleScale` float NOT NULL DEFAULT '0', + `FoleyMaterialID` int(10) unsigned NOT NULL DEFAULT '0', + `FootstepCameraEffectID` int(10) unsigned NOT NULL DEFAULT '0', + `DeathThudCameraEffectID` int(10) unsigned NOT NULL DEFAULT '0', + `SoundID` int(10) unsigned NOT NULL DEFAULT '0', + `SizeClass` int(10) unsigned NOT NULL DEFAULT '0', + `CollisionWidth` float NOT NULL DEFAULT '0', + `CollisionHeight` float NOT NULL DEFAULT '0', + `WorldEffectScale` float NOT NULL DEFAULT '0', + `CreatureGeosetDataID` int(10) unsigned NOT NULL DEFAULT '0', + `HoverHeight` float NOT NULL DEFAULT '0', + `AttachedEffectScale` float NOT NULL DEFAULT '0', + `ModelScale` float NOT NULL DEFAULT '0', + `MissileCollisionRadius` float NOT NULL DEFAULT '0', + `MissileCollisionPush` float NOT NULL DEFAULT '0', + `MissileCollisionRaise` float NOT NULL DEFAULT '0', + `MountHeight` float NOT NULL DEFAULT '0', + `OverrideLootEffectScale` float NOT NULL DEFAULT '0', + `OverrideNameScale` float NOT NULL DEFAULT '0', + `OverrideSelectionRadius` float NOT NULL DEFAULT '0', + `TamedPetBaseScale` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_model_data` +-- + +LOCK TABLES `creature_model_data` WRITE; +/*!40000 ALTER TABLE `creature_model_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_model_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_type` +-- + +DROP TABLE IF EXISTS `creature_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_type` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_type` +-- + +LOCK TABLES `creature_type` WRITE; +/*!40000 ALTER TABLE `creature_type` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `creature_type_locale` +-- + +DROP TABLE IF EXISTS `creature_type_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `creature_type_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `creature_type_locale` +-- + +LOCK TABLES `creature_type_locale` WRITE; +/*!40000 ALTER TABLE `creature_type_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `creature_type_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `criteria` +-- + +DROP TABLE IF EXISTS `criteria`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `criteria` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` smallint(6) NOT NULL DEFAULT '0', + `Asset` int(10) NOT NULL DEFAULT '0', + `ModifierTreeId` int(10) unsigned NOT NULL DEFAULT '0', + `StartEvent` int(11) NOT NULL DEFAULT '0', + `StartAsset` int(11) NOT NULL DEFAULT '0', + `StartTimer` smallint(5) unsigned NOT NULL DEFAULT '0', + `FailEvent` int(11) NOT NULL DEFAULT '0', + `FailAsset` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `EligibilityWorldStateID` smallint(6) NOT NULL DEFAULT '0', + `EligibilityWorldStateValue` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `criteria` +-- + +LOCK TABLES `criteria` WRITE; +/*!40000 ALTER TABLE `criteria` DISABLE KEYS */; +/*!40000 ALTER TABLE `criteria` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `criteria_tree` +-- + +DROP TABLE IF EXISTS `criteria_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `criteria_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Description` text, + `Parent` int(10) unsigned NOT NULL DEFAULT '0', + `Amount` int(10) unsigned NOT NULL DEFAULT '0', + `Operator` int(11) NOT NULL DEFAULT '0', + `CriteriaID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `criteria_tree` +-- + +LOCK TABLES `criteria_tree` WRITE; +/*!40000 ALTER TABLE `criteria_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `criteria_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `criteria_tree_locale` +-- + +DROP TABLE IF EXISTS `criteria_tree_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `criteria_tree_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `criteria_tree_locale` +-- + +LOCK TABLES `criteria_tree_locale` WRITE; +/*!40000 ALTER TABLE `criteria_tree_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `criteria_tree_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `currency_container` +-- + +DROP TABLE IF EXISTS `currency_container`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `currency_container` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ContainerName` text, + `ContainerDescription` text, + `MinAmount` int(11) NOT NULL DEFAULT '0', + `MaxAmount` int(11) NOT NULL DEFAULT '0', + `ContainerIconID` int(11) NOT NULL DEFAULT '0', + `ContainerQuality` int(11) NOT NULL DEFAULT '0', + `OnLootSpellVisualKitID` int(11) NOT NULL DEFAULT '0', + `CurrencyTypesID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `currency_container` +-- + +LOCK TABLES `currency_container` WRITE; +/*!40000 ALTER TABLE `currency_container` DISABLE KEYS */; +/*!40000 ALTER TABLE `currency_container` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `currency_container_locale` +-- + +DROP TABLE IF EXISTS `currency_container_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `currency_container_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `ContainerName_lang` text, + `ContainerDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `currency_container_locale` +-- + +LOCK TABLES `currency_container_locale` WRITE; +/*!40000 ALTER TABLE `currency_container_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `currency_container_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `currency_types` +-- + +DROP TABLE IF EXISTS `currency_types`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `currency_types` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `CategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `InventoryIconFileID` int(11) NOT NULL DEFAULT '0', + `SpellWeight` int(10) unsigned NOT NULL DEFAULT '0', + `SpellCategory` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxQty` int(10) unsigned NOT NULL DEFAULT '0', + `MaxEarnablePerWeek` int(10) unsigned NOT NULL DEFAULT '0', + `Quality` tinyint(4) NOT NULL DEFAULT '0', + `FactionID` int(11) NOT NULL DEFAULT '0', + `AwardConditionID` int(11) NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `currency_types` +-- + +LOCK TABLES `currency_types` WRITE; +/*!40000 ALTER TABLE `currency_types` DISABLE KEYS */; +/*!40000 ALTER TABLE `currency_types` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `currency_types_locale` +-- + +DROP TABLE IF EXISTS `currency_types_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `currency_types_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `currency_types_locale` +-- + +LOCK TABLES `currency_types_locale` WRITE; +/*!40000 ALTER TABLE `currency_types_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `currency_types_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `curve` +-- + +DROP TABLE IF EXISTS `curve`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `curve` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `curve` +-- + +LOCK TABLES `curve` WRITE; +/*!40000 ALTER TABLE `curve` DISABLE KEYS */; +/*!40000 ALTER TABLE `curve` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `curve_point` +-- + +DROP TABLE IF EXISTS `curve_point`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `curve_point` ( + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PreSLSquishPosX` float NOT NULL DEFAULT '0', + `PreSLSquishPosY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CurveID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `curve_point` +-- + +LOCK TABLES `curve_point` WRITE; +/*!40000 ALTER TABLE `curve_point` DISABLE KEYS */; +/*!40000 ALTER TABLE `curve_point` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `destructible_model_data` +-- + +DROP TABLE IF EXISTS `destructible_model_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `destructible_model_data` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `State0ImpactEffectDoodadSet` tinyint(4) NOT NULL DEFAULT '0', + `State0AmbientDoodadSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `State1Wmo` int(10) unsigned NOT NULL DEFAULT '0', + `State1DestructionDoodadSet` tinyint(4) NOT NULL DEFAULT '0', + `State1ImpactEffectDoodadSet` tinyint(4) NOT NULL DEFAULT '0', + `State1AmbientDoodadSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `State2Wmo` int(10) unsigned NOT NULL DEFAULT '0', + `State2DestructionDoodadSet` tinyint(4) NOT NULL DEFAULT '0', + `State2ImpactEffectDoodadSet` tinyint(4) NOT NULL DEFAULT '0', + `State2AmbientDoodadSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `State3Wmo` int(10) unsigned NOT NULL DEFAULT '0', + `State3InitDoodadSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `State3AmbientDoodadSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `EjectDirection` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DoNotHighlight` tinyint(3) unsigned NOT NULL DEFAULT '0', + `State0Wmo` int(10) unsigned NOT NULL DEFAULT '0', + `HealEffect` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HealEffectSpeed` smallint(5) unsigned NOT NULL DEFAULT '0', + `State0NameSet` tinyint(4) NOT NULL DEFAULT '0', + `State1NameSet` tinyint(4) NOT NULL DEFAULT '0', + `State2NameSet` tinyint(4) NOT NULL DEFAULT '0', + `State3NameSet` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `destructible_model_data` +-- + +LOCK TABLES `destructible_model_data` WRITE; +/*!40000 ALTER TABLE `destructible_model_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `destructible_model_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `difficulty` +-- + +DROP TABLE IF EXISTS `difficulty`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `difficulty` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `InstanceType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OldEnumValue` tinyint(4) NOT NULL DEFAULT '0', + `FallbackDifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemContext` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ToggleDifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GroupSizeHealthCurveID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GroupSizeDmgCurveID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GroupSizeSpellPointsCurveID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `difficulty` +-- + +LOCK TABLES `difficulty` WRITE; +/*!40000 ALTER TABLE `difficulty` DISABLE KEYS */; +/*!40000 ALTER TABLE `difficulty` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `difficulty_locale` +-- + +DROP TABLE IF EXISTS `difficulty_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `difficulty_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `difficulty_locale` +-- + +LOCK TABLES `difficulty_locale` WRITE; +/*!40000 ALTER TABLE `difficulty_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `difficulty_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dungeon_encounter` +-- + +DROP TABLE IF EXISTS `dungeon_encounter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `dungeon_encounter` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MapID` smallint(6) NOT NULL DEFAULT '0', + `DifficultyID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `Bit` tinyint(4) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `Faction` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dungeon_encounter` +-- + +LOCK TABLES `dungeon_encounter` WRITE; +/*!40000 ALTER TABLE `dungeon_encounter` DISABLE KEYS */; +/*!40000 ALTER TABLE `dungeon_encounter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `dungeon_encounter_locale` +-- + +DROP TABLE IF EXISTS `dungeon_encounter_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `dungeon_encounter_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `dungeon_encounter_locale` +-- + +LOCK TABLES `dungeon_encounter_locale` WRITE; +/*!40000 ALTER TABLE `dungeon_encounter_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `dungeon_encounter_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `durability_costs` +-- + +DROP TABLE IF EXISTS `durability_costs`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `durability_costs` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost1` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost2` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost3` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost4` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost5` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost6` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost7` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost8` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost9` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost10` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost11` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost12` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost13` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost14` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost15` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost16` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost17` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost18` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost19` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost20` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeaponSubClassCost21` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost1` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost2` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost3` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost4` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost5` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost6` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost7` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArmorSubClassCost8` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `durability_costs` +-- + +LOCK TABLES `durability_costs` WRITE; +/*!40000 ALTER TABLE `durability_costs` DISABLE KEYS */; +/*!40000 ALTER TABLE `durability_costs` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `durability_quality` +-- + +DROP TABLE IF EXISTS `durability_quality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `durability_quality` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Data` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `durability_quality` +-- + +LOCK TABLES `durability_quality` WRITE; +/*!40000 ALTER TABLE `durability_quality` DISABLE KEYS */; +/*!40000 ALTER TABLE `durability_quality` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `emotes` +-- + +DROP TABLE IF EXISTS `emotes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `emotes` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `EmoteSlashCommand` text, + `AnimID` int(11) NOT NULL DEFAULT '0', + `EmoteFlags` int(10) unsigned NOT NULL DEFAULT '0', + `EmoteSpecProc` tinyint(3) unsigned NOT NULL DEFAULT '0', + `EmoteSpecProcParam` int(10) unsigned NOT NULL DEFAULT '0', + `EventSoundID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualKitID` int(10) unsigned NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `emotes` +-- + +LOCK TABLES `emotes` WRITE; +/*!40000 ALTER TABLE `emotes` DISABLE KEYS */; +/*!40000 ALTER TABLE `emotes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `emotes_text` +-- + +DROP TABLE IF EXISTS `emotes_text`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `emotes_text` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `EmoteID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `emotes_text` +-- + +LOCK TABLES `emotes_text` WRITE; +/*!40000 ALTER TABLE `emotes_text` DISABLE KEYS */; +/*!40000 ALTER TABLE `emotes_text` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `emotes_text_sound` +-- + +DROP TABLE IF EXISTS `emotes_text_sound`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `emotes_text_sound` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RaceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ClassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SexID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundID` int(10) unsigned NOT NULL DEFAULT '0', + `EmotesTextID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `emotes_text_sound` +-- + +LOCK TABLES `emotes_text_sound` WRITE; +/*!40000 ALTER TABLE `emotes_text_sound` DISABLE KEYS */; +/*!40000 ALTER TABLE `emotes_text_sound` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `expected_stat` +-- + +DROP TABLE IF EXISTS `expected_stat`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `expected_stat` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ExpansionID` int(11) NOT NULL DEFAULT '0', + `CreatureHealth` float NOT NULL DEFAULT '0', + `PlayerHealth` float NOT NULL DEFAULT '0', + `CreatureAutoAttackDps` float NOT NULL DEFAULT '0', + `CreatureArmor` float NOT NULL DEFAULT '0', + `PlayerMana` float NOT NULL DEFAULT '0', + `PlayerPrimaryStat` float NOT NULL DEFAULT '0', + `PlayerSecondaryStat` float NOT NULL DEFAULT '0', + `ArmorConstant` float NOT NULL DEFAULT '0', + `CreatureSpellDamage` float NOT NULL DEFAULT '0', + `Lvl` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `expected_stat` +-- + +LOCK TABLES `expected_stat` WRITE; +/*!40000 ALTER TABLE `expected_stat` DISABLE KEYS */; +/*!40000 ALTER TABLE `expected_stat` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `expected_stat_mod` +-- + +DROP TABLE IF EXISTS `expected_stat_mod`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `expected_stat_mod` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureHealthMod` float NOT NULL DEFAULT '0', + `PlayerHealthMod` float NOT NULL DEFAULT '0', + `CreatureAutoAttackDPSMod` float NOT NULL DEFAULT '0', + `CreatureArmorMod` float NOT NULL DEFAULT '0', + `PlayerManaMod` float NOT NULL DEFAULT '0', + `PlayerPrimaryStatMod` float NOT NULL DEFAULT '0', + `PlayerSecondaryStatMod` float NOT NULL DEFAULT '0', + `ArmorConstantMod` float NOT NULL DEFAULT '0', + `CreatureSpellDamageMod` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `expected_stat_mod` +-- + +LOCK TABLES `expected_stat_mod` WRITE; +/*!40000 ALTER TABLE `expected_stat_mod` DISABLE KEYS */; +/*!40000 ALTER TABLE `expected_stat_mod` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `faction` +-- + +DROP TABLE IF EXISTS `faction`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `faction` ( + `ReputationRaceMask1` bigint(20) NOT NULL DEFAULT '0', + `ReputationRaceMask2` bigint(20) NOT NULL DEFAULT '0', + `ReputationRaceMask3` bigint(20) NOT NULL DEFAULT '0', + `ReputationRaceMask4` bigint(20) NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ReputationIndex` smallint(6) NOT NULL DEFAULT '0', + `ParentFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Expansion` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FriendshipRepID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ParagonFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RenownFactionID` int(11) NOT NULL DEFAULT '0', + `RenownCurrencyID` int(11) NOT NULL DEFAULT '0', + `ReputationClassMask1` smallint(6) NOT NULL DEFAULT '0', + `ReputationClassMask2` smallint(6) NOT NULL DEFAULT '0', + `ReputationClassMask3` smallint(6) NOT NULL DEFAULT '0', + `ReputationClassMask4` smallint(6) NOT NULL DEFAULT '0', + `ReputationFlags1` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReputationFlags2` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReputationFlags3` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReputationFlags4` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReputationBase1` int(11) NOT NULL DEFAULT '0', + `ReputationBase2` int(11) NOT NULL DEFAULT '0', + `ReputationBase3` int(11) NOT NULL DEFAULT '0', + `ReputationBase4` int(11) NOT NULL DEFAULT '0', + `ReputationMax1` int(11) NOT NULL DEFAULT '0', + `ReputationMax2` int(11) NOT NULL DEFAULT '0', + `ReputationMax3` int(11) NOT NULL DEFAULT '0', + `ReputationMax4` int(11) NOT NULL DEFAULT '0', + `ParentFactionMod1` float NOT NULL DEFAULT '0', + `ParentFactionMod2` float NOT NULL DEFAULT '0', + `ParentFactionCap1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ParentFactionCap2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `faction` +-- + +LOCK TABLES `faction` WRITE; +/*!40000 ALTER TABLE `faction` DISABLE KEYS */; +/*!40000 ALTER TABLE `faction` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `faction_locale` +-- + +DROP TABLE IF EXISTS `faction_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `faction_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `faction_locale` +-- + +LOCK TABLES `faction_locale` WRITE; +/*!40000 ALTER TABLE `faction_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `faction_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `faction_template` +-- + +DROP TABLE IF EXISTS `faction_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `faction_template` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Faction` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `FactionGroup` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FriendGroup` tinyint(3) unsigned NOT NULL DEFAULT '0', + `EnemyGroup` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Enemies1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Enemies8` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Friend8` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `faction_template` +-- + +LOCK TABLES `faction_template` WRITE; +/*!40000 ALTER TABLE `faction_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `faction_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `friendship_rep_reaction` +-- + +DROP TABLE IF EXISTS `friendship_rep_reaction`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `friendship_rep_reaction` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Reaction` text, + `FriendshipRepID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ReactionThreshold` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `friendship_rep_reaction` +-- + +LOCK TABLES `friendship_rep_reaction` WRITE; +/*!40000 ALTER TABLE `friendship_rep_reaction` DISABLE KEYS */; +/*!40000 ALTER TABLE `friendship_rep_reaction` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `friendship_rep_reaction_locale` +-- + +DROP TABLE IF EXISTS `friendship_rep_reaction_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `friendship_rep_reaction_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Reaction_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `friendship_rep_reaction_locale` +-- + +LOCK TABLES `friendship_rep_reaction_locale` WRITE; +/*!40000 ALTER TABLE `friendship_rep_reaction_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `friendship_rep_reaction_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `friendship_reputation` +-- + +DROP TABLE IF EXISTS `friendship_reputation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `friendship_reputation` ( + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Field34146722002` int(11) NOT NULL DEFAULT '0', + `Field34146722003` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `friendship_reputation` +-- + +LOCK TABLES `friendship_reputation` WRITE; +/*!40000 ALTER TABLE `friendship_reputation` DISABLE KEYS */; +/*!40000 ALTER TABLE `friendship_reputation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `friendship_reputation_locale` +-- + +DROP TABLE IF EXISTS `friendship_reputation_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `friendship_reputation_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `friendship_reputation_locale` +-- + +LOCK TABLES `friendship_reputation_locale` WRITE; +/*!40000 ALTER TABLE `friendship_reputation_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `friendship_reputation_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gameobject_art_kit` +-- + +DROP TABLE IF EXISTS `gameobject_art_kit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gameobject_art_kit` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AttachModelFileID` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileID1` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileID2` int(11) NOT NULL DEFAULT '0', + `TextureVariationFileID3` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gameobject_art_kit` +-- + +LOCK TABLES `gameobject_art_kit` WRITE; +/*!40000 ALTER TABLE `gameobject_art_kit` DISABLE KEYS */; +/*!40000 ALTER TABLE `gameobject_art_kit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gameobject_display_info` +-- + +DROP TABLE IF EXISTS `gameobject_display_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gameobject_display_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ModelName` text, + `GeoBoxMinX` float NOT NULL DEFAULT '0', + `GeoBoxMinY` float NOT NULL DEFAULT '0', + `GeoBoxMinZ` float NOT NULL DEFAULT '0', + `GeoBoxMaxX` float NOT NULL DEFAULT '0', + `GeoBoxMaxY` float NOT NULL DEFAULT '0', + `GeoBoxMaxZ` float NOT NULL DEFAULT '0', + `FileDataID` int(11) NOT NULL DEFAULT '0', + `ObjectEffectPackageID` smallint(6) NOT NULL DEFAULT '0', + `OverrideLootEffectScale` float NOT NULL DEFAULT '0', + `OverrideNameScale` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gameobject_display_info` +-- + +LOCK TABLES `gameobject_display_info` WRITE; +/*!40000 ALTER TABLE `gameobject_display_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `gameobject_display_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gameobjects` +-- + +DROP TABLE IF EXISTS `gameobjects`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gameobjects` ( + `Name` text, + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PosZ` float NOT NULL DEFAULT '0', + `Rot1` float NOT NULL DEFAULT '0', + `Rot2` float NOT NULL DEFAULT '0', + `Rot3` float NOT NULL DEFAULT '0', + `Rot4` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OwnerID` smallint(5) unsigned NOT NULL DEFAULT '0', + `DisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `Scale` float NOT NULL DEFAULT '0', + `TypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PhaseUseFlags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PhaseID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PhaseGroupID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PropValue1` int(11) NOT NULL DEFAULT '0', + `PropValue2` int(11) NOT NULL DEFAULT '0', + `PropValue3` int(11) NOT NULL DEFAULT '0', + `PropValue4` int(11) NOT NULL DEFAULT '0', + `PropValue5` int(11) NOT NULL DEFAULT '0', + `PropValue6` int(11) NOT NULL DEFAULT '0', + `PropValue7` int(11) NOT NULL DEFAULT '0', + `PropValue8` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gameobjects` +-- + +LOCK TABLES `gameobjects` WRITE; +/*!40000 ALTER TABLE `gameobjects` DISABLE KEYS */; +/*!40000 ALTER TABLE `gameobjects` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gameobjects_locale` +-- + +DROP TABLE IF EXISTS `gameobjects_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gameobjects_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gameobjects_locale` +-- + +LOCK TABLES `gameobjects_locale` WRITE; +/*!40000 ALTER TABLE `gameobjects_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `gameobjects_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_ability` +-- + +DROP TABLE IF EXISTS `garr_ability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_ability` ( + `Name` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrAbilityCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrFollowerTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `FactionChangeGarrAbilityID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_ability` +-- + +LOCK TABLES `garr_ability` WRITE; +/*!40000 ALTER TABLE `garr_ability` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_ability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_ability_locale` +-- + +DROP TABLE IF EXISTS `garr_ability_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_ability_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_ability_locale` +-- + +LOCK TABLES `garr_ability_locale` WRITE; +/*!40000 ALTER TABLE `garr_ability_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_ability_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_building` +-- + +DROP TABLE IF EXISTS `garr_building`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_building` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `HordeName` text, + `AllianceName` text, + `Description` text, + `Tooltip` text, + `GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BuildingType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeGameObjectID` int(11) NOT NULL DEFAULT '0', + `AllianceGameObjectID` int(11) NOT NULL DEFAULT '0', + `GarrSiteID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UpgradeLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BuildSeconds` int(11) NOT NULL DEFAULT '0', + `CurrencyTypeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyQty` int(11) NOT NULL DEFAULT '0', + `HordeUiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AllianceUiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `AllianceSceneScriptPackageID` smallint(5) unsigned NOT NULL DEFAULT '0', + `HordeSceneScriptPackageID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxAssignments` int(11) NOT NULL DEFAULT '0', + `ShipmentCapacity` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrAbilityID` smallint(5) unsigned NOT NULL DEFAULT '0', + `BonusGarrAbilityID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GoldCost` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_building` +-- + +LOCK TABLES `garr_building` WRITE; +/*!40000 ALTER TABLE `garr_building` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_building` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_building_locale` +-- + +DROP TABLE IF EXISTS `garr_building_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_building_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `HordeName_lang` text, + `AllianceName_lang` text, + `Description_lang` text, + `Tooltip_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_building_locale` +-- + +LOCK TABLES `garr_building_locale` WRITE; +/*!40000 ALTER TABLE `garr_building_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_building_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_building_plot_inst` +-- + +DROP TABLE IF EXISTS `garr_building_plot_inst`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_building_plot_inst` ( + `MapOffsetX` float NOT NULL DEFAULT '0', + `MapOffsetY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrBuildingID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrSiteLevelPlotInstID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiTextureAtlasMemberID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_building_plot_inst` +-- + +LOCK TABLES `garr_building_plot_inst` WRITE; +/*!40000 ALTER TABLE `garr_building_plot_inst` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_building_plot_inst` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_class_spec` +-- + +DROP TABLE IF EXISTS `garr_class_spec`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_class_spec` ( + `ClassSpec` text, + `ClassSpecMale` text, + `ClassSpecFemale` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UiTextureAtlasMemberID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GarrFollItemSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `FollowerClassLimit` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_class_spec` +-- + +LOCK TABLES `garr_class_spec` WRITE; +/*!40000 ALTER TABLE `garr_class_spec` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_class_spec` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_class_spec_locale` +-- + +DROP TABLE IF EXISTS `garr_class_spec_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_class_spec_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `ClassSpec_lang` text, + `ClassSpecMale_lang` text, + `ClassSpecFemale_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_class_spec_locale` +-- + +LOCK TABLES `garr_class_spec_locale` WRITE; +/*!40000 ALTER TABLE `garr_class_spec_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_class_spec_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_follower` +-- + +DROP TABLE IF EXISTS `garr_follower`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_follower` ( + `HordeSourceText` text, + `AllianceSourceText` text, + `TitleName` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrFollowerTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeCreatureID` int(11) NOT NULL DEFAULT '0', + `AllianceCreatureID` int(11) NOT NULL DEFAULT '0', + `HordeGarrFollRaceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AllianceGarrFollRaceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeGarrClassSpecID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AllianceGarrClassSpecID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Quality` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FollowerLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemLevelWeapon` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemLevelArmor` smallint(5) unsigned NOT NULL DEFAULT '0', + `HordeSourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `AllianceSourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `HordeIconFileDataID` int(11) NOT NULL DEFAULT '0', + `AllianceIconFileDataID` int(11) NOT NULL DEFAULT '0', + `HordeGarrFollItemSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AllianceGarrFollItemSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `HordeUITextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AllianceUITextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Vitality` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeFlavorGarrStringID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AllianceFlavorGarrStringID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeSlottingBroadcastTextID` int(10) unsigned NOT NULL DEFAULT '0', + `AllySlottingBroadcastTextID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrClassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Gender` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_follower` +-- + +LOCK TABLES `garr_follower` WRITE; +/*!40000 ALTER TABLE `garr_follower` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_follower` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_follower_locale` +-- + +DROP TABLE IF EXISTS `garr_follower_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_follower_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `HordeSourceText_lang` text, + `AllianceSourceText_lang` text, + `TitleName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_follower_locale` +-- + +LOCK TABLES `garr_follower_locale` WRITE; +/*!40000 ALTER TABLE `garr_follower_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_follower_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_follower_x_ability` +-- + +DROP TABLE IF EXISTS `garr_follower_x_ability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_follower_x_ability` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FactionIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrAbilityID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GarrFollowerID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_follower_x_ability` +-- + +LOCK TABLES `garr_follower_x_ability` WRITE; +/*!40000 ALTER TABLE `garr_follower_x_ability` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_follower_x_ability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_mission` +-- + +DROP TABLE IF EXISTS `garr_mission`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_mission` ( + `Name` text, + `Location` text, + `Description` text, + `MapPosX` float NOT NULL DEFAULT '0', + `MapPosY` float NOT NULL DEFAULT '0', + `WorldPosX` float NOT NULL DEFAULT '0', + `WorldPosY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrMissionTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrFollowerTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxFollowers` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MissionCost` int(10) unsigned NOT NULL DEFAULT '0', + `MissionCostCurrencyTypesID` smallint(5) unsigned NOT NULL DEFAULT '0', + `OfferedGarrMissionTextureID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `EnvGarrMechanicID` int(10) unsigned NOT NULL DEFAULT '0', + `EnvGarrMechanicTypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `TargetLevel` tinyint(4) NOT NULL DEFAULT '0', + `TargetItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `MissionDuration` int(11) NOT NULL DEFAULT '0', + `TravelDuration` int(11) NOT NULL DEFAULT '0', + `OfferDuration` int(10) unsigned NOT NULL DEFAULT '0', + `BaseCompletionChance` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BaseFollowerXP` int(10) unsigned NOT NULL DEFAULT '0', + `OvermaxRewardPackID` int(10) unsigned NOT NULL DEFAULT '0', + `FollowerDeathChance` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AreaID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `GarrMissionSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_mission` +-- + +LOCK TABLES `garr_mission` WRITE; +/*!40000 ALTER TABLE `garr_mission` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_mission` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_mission_locale` +-- + +DROP TABLE IF EXISTS `garr_mission_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_mission_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Location_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_mission_locale` +-- + +LOCK TABLES `garr_mission_locale` WRITE; +/*!40000 ALTER TABLE `garr_mission_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_mission_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_plot` +-- + +DROP TABLE IF EXISTS `garr_plot`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_plot` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `PlotType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HordeConstructObjID` int(11) NOT NULL DEFAULT '0', + `AllianceConstructObjID` int(11) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UpgradeRequirement1` int(10) unsigned NOT NULL DEFAULT '0', + `UpgradeRequirement2` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_plot` +-- + +LOCK TABLES `garr_plot` WRITE; +/*!40000 ALTER TABLE `garr_plot` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_plot` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_plot_building` +-- + +DROP TABLE IF EXISTS `garr_plot_building`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_plot_building` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrPlotID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GarrBuildingID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_plot_building` +-- + +LOCK TABLES `garr_plot_building` WRITE; +/*!40000 ALTER TABLE `garr_plot_building` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_plot_building` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_plot_instance` +-- + +DROP TABLE IF EXISTS `garr_plot_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_plot_instance` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `GarrPlotID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_plot_instance` +-- + +LOCK TABLES `garr_plot_instance` WRITE; +/*!40000 ALTER TABLE `garr_plot_instance` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_plot_instance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_site_level` +-- + +DROP TABLE IF EXISTS `garr_site_level`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_site_level` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TownHallUiPosX` float NOT NULL DEFAULT '0', + `TownHallUiPosY` float NOT NULL DEFAULT '0', + `GarrSiteID` int(10) unsigned NOT NULL DEFAULT '0', + `GarrLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeMovieID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxBuildingLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UpgradeCost` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeGoldCost` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_site_level` +-- + +LOCK TABLES `garr_site_level` WRITE; +/*!40000 ALTER TABLE `garr_site_level` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_site_level` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_site_level_plot_inst` +-- + +DROP TABLE IF EXISTS `garr_site_level_plot_inst`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_site_level_plot_inst` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UiMarkerPosX` float NOT NULL DEFAULT '0', + `UiMarkerPosY` float NOT NULL DEFAULT '0', + `GarrSiteLevelID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GarrPlotInstanceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiMarkerSize` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_site_level_plot_inst` +-- + +LOCK TABLES `garr_site_level_plot_inst` WRITE; +/*!40000 ALTER TABLE `garr_site_level_plot_inst` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_site_level_plot_inst` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_talent_tree` +-- + +DROP TABLE IF EXISTS `garr_talent_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_talent_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `GarrTypeID` int(11) NOT NULL DEFAULT '0', + `ClassID` int(11) NOT NULL DEFAULT '0', + `MaxTiers` tinyint(4) NOT NULL DEFAULT '0', + `UiOrder` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `UiTextureKitID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_talent_tree` +-- + +LOCK TABLES `garr_talent_tree` WRITE; +/*!40000 ALTER TABLE `garr_talent_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_talent_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `garr_talent_tree_locale` +-- + +DROP TABLE IF EXISTS `garr_talent_tree_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `garr_talent_tree_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `garr_talent_tree_locale` +-- + +LOCK TABLES `garr_talent_tree_locale` WRITE; +/*!40000 ALTER TABLE `garr_talent_tree_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `garr_talent_tree_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gem_properties` +-- + +DROP TABLE IF EXISTS `gem_properties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gem_properties` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `EnchantId` smallint(5) unsigned NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '0', + `MinItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gem_properties` +-- + +LOCK TABLES `gem_properties` WRITE; +/*!40000 ALTER TABLE `gem_properties` DISABLE KEYS */; +/*!40000 ALTER TABLE `gem_properties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `glyph_bindable_spell` +-- + +DROP TABLE IF EXISTS `glyph_bindable_spell`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `glyph_bindable_spell` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `GlyphPropertiesID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `glyph_bindable_spell` +-- + +LOCK TABLES `glyph_bindable_spell` WRITE; +/*!40000 ALTER TABLE `glyph_bindable_spell` DISABLE KEYS */; +/*!40000 ALTER TABLE `glyph_bindable_spell` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `glyph_properties` +-- + +DROP TABLE IF EXISTS `glyph_properties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `glyph_properties` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `GlyphType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `GlyphExclusiveCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellIconFileDataID` int(11) NOT NULL DEFAULT '0', + `GlyphSlotFlags` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `glyph_properties` +-- + +LOCK TABLES `glyph_properties` WRITE; +/*!40000 ALTER TABLE `glyph_properties` DISABLE KEYS */; +/*!40000 ALTER TABLE `glyph_properties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `glyph_required_spec` +-- + +DROP TABLE IF EXISTS `glyph_required_spec`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `glyph_required_spec` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrSpecializationID` smallint(5) unsigned NOT NULL DEFAULT '0', + `GlyphPropertiesID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `glyph_required_spec` +-- + +LOCK TABLES `glyph_required_spec` WRITE; +/*!40000 ALTER TABLE `glyph_required_spec` DISABLE KEYS */; +/*!40000 ALTER TABLE `glyph_required_spec` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `gossip_npc_option` +-- + +DROP TABLE IF EXISTS `gossip_npc_option`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `gossip_npc_option` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GossipNpcOption` int(11) NOT NULL DEFAULT '0', + `LFGDungeonsID` int(11) NOT NULL DEFAULT '0', + `Field34146722002` int(11) NOT NULL DEFAULT '0', + `Field34146722003` int(11) NOT NULL DEFAULT '0', + `Field34146722004` int(11) NOT NULL DEFAULT '0', + `Field34146722005` int(11) NOT NULL DEFAULT '0', + `Field34146722006` int(11) NOT NULL DEFAULT '0', + `Field34146722007` int(11) NOT NULL DEFAULT '0', + `Field34146722008` int(11) NOT NULL DEFAULT '0', + `Field34146722009` int(11) NOT NULL DEFAULT '0', + `Field34146722010` int(11) NOT NULL DEFAULT '0', + `GossipOptionID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `gossip_npc_option` +-- + +LOCK TABLES `gossip_npc_option` WRITE; +/*!40000 ALTER TABLE `gossip_npc_option` DISABLE KEYS */; +/*!40000 ALTER TABLE `gossip_npc_option` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `guild_color_background` +-- + +DROP TABLE IF EXISTS `guild_color_background`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `guild_color_background` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Red` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Blue` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Green` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `guild_color_background` +-- + +LOCK TABLES `guild_color_background` WRITE; +/*!40000 ALTER TABLE `guild_color_background` DISABLE KEYS */; +/*!40000 ALTER TABLE `guild_color_background` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `guild_color_border` +-- + +DROP TABLE IF EXISTS `guild_color_border`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `guild_color_border` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Red` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Blue` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Green` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `guild_color_border` +-- + +LOCK TABLES `guild_color_border` WRITE; +/*!40000 ALTER TABLE `guild_color_border` DISABLE KEYS */; +/*!40000 ALTER TABLE `guild_color_border` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `guild_color_emblem` +-- + +DROP TABLE IF EXISTS `guild_color_emblem`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `guild_color_emblem` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Red` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Blue` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Green` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `guild_color_emblem` +-- + +LOCK TABLES `guild_color_emblem` WRITE; +/*!40000 ALTER TABLE `guild_color_emblem` DISABLE KEYS */; +/*!40000 ALTER TABLE `guild_color_emblem` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `guild_perk_spells` +-- + +DROP TABLE IF EXISTS `guild_perk_spells`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `guild_perk_spells` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `guild_perk_spells` +-- + +LOCK TABLES `guild_perk_spells` WRITE; +/*!40000 ALTER TABLE `guild_perk_spells` DISABLE KEYS */; +/*!40000 ALTER TABLE `guild_perk_spells` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `heirloom` +-- + +DROP TABLE IF EXISTS `heirloom`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `heirloom` ( + `SourceText` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `LegacyUpgradedItemID` int(11) NOT NULL DEFAULT '0', + `StaticUpgradedItemID` int(11) NOT NULL DEFAULT '0', + `SourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LegacyItemID` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID1` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID2` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID3` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID4` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID5` int(11) NOT NULL DEFAULT '0', + `UpgradeItemID6` int(11) NOT NULL DEFAULT '0', + `UpgradeItemBonusListID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeItemBonusListID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeItemBonusListID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeItemBonusListID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeItemBonusListID5` smallint(5) unsigned NOT NULL DEFAULT '0', + `UpgradeItemBonusListID6` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `heirloom` +-- + +LOCK TABLES `heirloom` WRITE; +/*!40000 ALTER TABLE `heirloom` DISABLE KEYS */; +/*!40000 ALTER TABLE `heirloom` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `heirloom_locale` +-- + +DROP TABLE IF EXISTS `heirloom_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `heirloom_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `SourceText_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `heirloom_locale` +-- + +LOCK TABLES `heirloom_locale` WRITE; +/*!40000 ALTER TABLE `heirloom_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `heirloom_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `holidays` +-- + +DROP TABLE IF EXISTS `holidays`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `holidays` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Region` smallint(5) unsigned NOT NULL DEFAULT '0', + `Looping` tinyint(3) unsigned NOT NULL DEFAULT '0', + `HolidayNameID` int(10) unsigned NOT NULL DEFAULT '0', + `HolidayDescriptionID` int(10) unsigned NOT NULL DEFAULT '0', + `Priority` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFilterType` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WorldStateExpressionID` int(10) unsigned NOT NULL DEFAULT '0', + `Duration1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration8` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration9` smallint(5) unsigned NOT NULL DEFAULT '0', + `Duration10` smallint(5) unsigned NOT NULL DEFAULT '0', + `Date1` int(10) unsigned NOT NULL DEFAULT '0', + `Date2` int(10) unsigned NOT NULL DEFAULT '0', + `Date3` int(10) unsigned NOT NULL DEFAULT '0', + `Date4` int(10) unsigned NOT NULL DEFAULT '0', + `Date5` int(10) unsigned NOT NULL DEFAULT '0', + `Date6` int(10) unsigned NOT NULL DEFAULT '0', + `Date7` int(10) unsigned NOT NULL DEFAULT '0', + `Date8` int(10) unsigned NOT NULL DEFAULT '0', + `Date9` int(10) unsigned NOT NULL DEFAULT '0', + `Date10` int(10) unsigned NOT NULL DEFAULT '0', + `Date11` int(10) unsigned NOT NULL DEFAULT '0', + `Date12` int(10) unsigned NOT NULL DEFAULT '0', + `Date13` int(10) unsigned NOT NULL DEFAULT '0', + `Date14` int(10) unsigned NOT NULL DEFAULT '0', + `Date15` int(10) unsigned NOT NULL DEFAULT '0', + `Date16` int(10) unsigned NOT NULL DEFAULT '0', + `CalendarFlags1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags9` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CalendarFlags10` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TextureFileDataID1` int(11) NOT NULL DEFAULT '0', + `TextureFileDataID2` int(11) NOT NULL DEFAULT '0', + `TextureFileDataID3` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `holidays` +-- + +LOCK TABLES `holidays` WRITE; +/*!40000 ALTER TABLE `holidays` DISABLE KEYS */; +/*!40000 ALTER TABLE `holidays` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `import_price_armor` +-- + +DROP TABLE IF EXISTS `import_price_armor`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `import_price_armor` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClothModifier` float NOT NULL DEFAULT '0', + `LeatherModifier` float NOT NULL DEFAULT '0', + `ChainModifier` float NOT NULL DEFAULT '0', + `PlateModifier` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `import_price_armor` +-- + +LOCK TABLES `import_price_armor` WRITE; +/*!40000 ALTER TABLE `import_price_armor` DISABLE KEYS */; +/*!40000 ALTER TABLE `import_price_armor` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `import_price_quality` +-- + +DROP TABLE IF EXISTS `import_price_quality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `import_price_quality` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Data` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `import_price_quality` +-- + +LOCK TABLES `import_price_quality` WRITE; +/*!40000 ALTER TABLE `import_price_quality` DISABLE KEYS */; +/*!40000 ALTER TABLE `import_price_quality` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `import_price_shield` +-- + +DROP TABLE IF EXISTS `import_price_shield`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `import_price_shield` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Data` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `import_price_shield` +-- + +LOCK TABLES `import_price_shield` WRITE; +/*!40000 ALTER TABLE `import_price_shield` DISABLE KEYS */; +/*!40000 ALTER TABLE `import_price_shield` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `import_price_weapon` +-- + +DROP TABLE IF EXISTS `import_price_weapon`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `import_price_weapon` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Data` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `import_price_weapon` +-- + +LOCK TABLES `import_price_weapon` WRITE; +/*!40000 ALTER TABLE `import_price_weapon` DISABLE KEYS */; +/*!40000 ALTER TABLE `import_price_weapon` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item` +-- + +DROP TABLE IF EXISTS `item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SubclassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Material` tinyint(3) unsigned NOT NULL DEFAULT '0', + `InventoryType` tinyint(4) NOT NULL DEFAULT '0', + `RequiredLevel` int(11) NOT NULL DEFAULT '0', + `SheatheType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RandomSelect` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemRandomSuffixGroupID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SoundOverrideSubclassID` tinyint(4) NOT NULL DEFAULT '0', + `ScalingStatDistributionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `ItemGroupSoundsID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ContentTuningID` int(11) NOT NULL DEFAULT '0', + `MaxDurability` int(10) unsigned NOT NULL DEFAULT '0', + `AmmunitionType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ScalingStatValue` int(11) NOT NULL DEFAULT '0', + `DamageType1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageType2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageType3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageType4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageType5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Resistances1` smallint(6) NOT NULL DEFAULT '0', + `Resistances2` smallint(6) NOT NULL DEFAULT '0', + `Resistances3` smallint(6) NOT NULL DEFAULT '0', + `Resistances4` smallint(6) NOT NULL DEFAULT '0', + `Resistances5` smallint(6) NOT NULL DEFAULT '0', + `Resistances6` smallint(6) NOT NULL DEFAULT '0', + `Resistances7` smallint(6) NOT NULL DEFAULT '0', + `MinDamage1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage5` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage5` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item` +-- + +LOCK TABLES `item` WRITE; +/*!40000 ALTER TABLE `item` DISABLE KEYS */; +/*!40000 ALTER TABLE `item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_appearance` +-- + +DROP TABLE IF EXISTS `item_appearance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_appearance` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DisplayType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemDisplayInfoID` int(11) NOT NULL DEFAULT '0', + `DefaultIconFileDataID` int(11) NOT NULL DEFAULT '0', + `UiOrder` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_appearance` +-- + +LOCK TABLES `item_appearance` WRITE; +/*!40000 ALTER TABLE `item_appearance` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_appearance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_armor_quality` +-- + +DROP TABLE IF EXISTS `item_armor_quality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_armor_quality` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Qualitymod1` float NOT NULL DEFAULT '0', + `Qualitymod2` float NOT NULL DEFAULT '0', + `Qualitymod3` float NOT NULL DEFAULT '0', + `Qualitymod4` float NOT NULL DEFAULT '0', + `Qualitymod5` float NOT NULL DEFAULT '0', + `Qualitymod6` float NOT NULL DEFAULT '0', + `Qualitymod7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_armor_quality` +-- + +LOCK TABLES `item_armor_quality` WRITE; +/*!40000 ALTER TABLE `item_armor_quality` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_armor_quality` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_armor_shield` +-- + +DROP TABLE IF EXISTS `item_armor_shield`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_armor_shield` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_armor_shield` +-- + +LOCK TABLES `item_armor_shield` WRITE; +/*!40000 ALTER TABLE `item_armor_shield` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_armor_shield` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_armor_total` +-- + +DROP TABLE IF EXISTS `item_armor_total`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_armor_total` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(6) NOT NULL DEFAULT '0', + `Cloth` float NOT NULL DEFAULT '0', + `Leather` float NOT NULL DEFAULT '0', + `Mail` float NOT NULL DEFAULT '0', + `Plate` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_armor_total` +-- + +LOCK TABLES `item_armor_total` WRITE; +/*!40000 ALTER TABLE `item_armor_total` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_armor_total` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_bag_family` +-- + +DROP TABLE IF EXISTS `item_bag_family`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_bag_family` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_bag_family` +-- + +LOCK TABLES `item_bag_family` WRITE; +/*!40000 ALTER TABLE `item_bag_family` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_bag_family` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_bag_family_locale` +-- + +DROP TABLE IF EXISTS `item_bag_family_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_bag_family_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_bag_family_locale` +-- + +LOCK TABLES `item_bag_family_locale` WRITE; +/*!40000 ALTER TABLE `item_bag_family_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_bag_family_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_bonus` +-- + +DROP TABLE IF EXISTS `item_bonus`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_bonus` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Value1` int(11) NOT NULL DEFAULT '0', + `Value2` int(11) NOT NULL DEFAULT '0', + `Value3` int(11) NOT NULL DEFAULT '0', + `Value4` int(11) NOT NULL DEFAULT '0', + `ParentItemBonusListID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_bonus` +-- + +LOCK TABLES `item_bonus` WRITE; +/*!40000 ALTER TABLE `item_bonus` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_bonus` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_bonus_list_level_delta` +-- + +DROP TABLE IF EXISTS `item_bonus_list_level_delta`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_bonus_list_level_delta` ( + `ItemLevelDelta` smallint(6) NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_bonus_list_level_delta` +-- + +LOCK TABLES `item_bonus_list_level_delta` WRITE; +/*!40000 ALTER TABLE `item_bonus_list_level_delta` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_bonus_list_level_delta` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_bonus_tree_node` +-- + +DROP TABLE IF EXISTS `item_bonus_tree_node`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_bonus_tree_node` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemContext` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ChildItemBonusTreeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ChildItemBonusListID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ChildItemLevelSelectorID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ParentItemBonusTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_bonus_tree_node` +-- + +LOCK TABLES `item_bonus_tree_node` WRITE; +/*!40000 ALTER TABLE `item_bonus_tree_node` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_bonus_tree_node` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_child_equipment` +-- + +DROP TABLE IF EXISTS `item_child_equipment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_child_equipment` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChildItemID` int(11) NOT NULL DEFAULT '0', + `ChildItemEquipSlot` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ParentItemID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_child_equipment` +-- + +LOCK TABLES `item_child_equipment` WRITE; +/*!40000 ALTER TABLE `item_child_equipment` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_child_equipment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_class` +-- + +DROP TABLE IF EXISTS `item_class`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_class` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClassName` text, + `ClassID` tinyint(4) NOT NULL DEFAULT '0', + `PriceModifier` float NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_class` +-- + +LOCK TABLES `item_class` WRITE; +/*!40000 ALTER TABLE `item_class` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_class` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_class_locale` +-- + +DROP TABLE IF EXISTS `item_class_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_class_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `ClassName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_class_locale` +-- + +LOCK TABLES `item_class_locale` WRITE; +/*!40000 ALTER TABLE `item_class_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_class_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_context_picker_entry` +-- + +DROP TABLE IF EXISTS `item_context_picker_entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_context_picker_entry` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemCreationContext` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PVal` int(11) NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemContextPickerID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_context_picker_entry` +-- + +LOCK TABLES `item_context_picker_entry` WRITE; +/*!40000 ALTER TABLE `item_context_picker_entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_context_picker_entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_currency_cost` +-- + +DROP TABLE IF EXISTS `item_currency_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_currency_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_currency_cost` +-- + +LOCK TABLES `item_currency_cost` WRITE; +/*!40000 ALTER TABLE `item_currency_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_currency_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_damage_ammo` +-- + +DROP TABLE IF EXISTS `item_damage_ammo`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_damage_ammo` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_damage_ammo` +-- + +LOCK TABLES `item_damage_ammo` WRITE; +/*!40000 ALTER TABLE `item_damage_ammo` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_damage_ammo` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_damage_one_hand` +-- + +DROP TABLE IF EXISTS `item_damage_one_hand`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_damage_one_hand` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_damage_one_hand` +-- + +LOCK TABLES `item_damage_one_hand` WRITE; +/*!40000 ALTER TABLE `item_damage_one_hand` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_damage_one_hand` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_damage_one_hand_caster` +-- + +DROP TABLE IF EXISTS `item_damage_one_hand_caster`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_damage_one_hand_caster` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_damage_one_hand_caster` +-- + +LOCK TABLES `item_damage_one_hand_caster` WRITE; +/*!40000 ALTER TABLE `item_damage_one_hand_caster` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_damage_one_hand_caster` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_damage_two_hand` +-- + +DROP TABLE IF EXISTS `item_damage_two_hand`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_damage_two_hand` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_damage_two_hand` +-- + +LOCK TABLES `item_damage_two_hand` WRITE; +/*!40000 ALTER TABLE `item_damage_two_hand` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_damage_two_hand` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_damage_two_hand_caster` +-- + +DROP TABLE IF EXISTS `item_damage_two_hand_caster`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_damage_two_hand_caster` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Quality1` float NOT NULL DEFAULT '0', + `Quality2` float NOT NULL DEFAULT '0', + `Quality3` float NOT NULL DEFAULT '0', + `Quality4` float NOT NULL DEFAULT '0', + `Quality5` float NOT NULL DEFAULT '0', + `Quality6` float NOT NULL DEFAULT '0', + `Quality7` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_damage_two_hand_caster` +-- + +LOCK TABLES `item_damage_two_hand_caster` WRITE; +/*!40000 ALTER TABLE `item_damage_two_hand_caster` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_damage_two_hand_caster` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_disenchant_loot` +-- + +DROP TABLE IF EXISTS `item_disenchant_loot`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_disenchant_loot` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Subclass` tinyint(4) NOT NULL DEFAULT '0', + `Quality` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `SkillRequired` smallint(5) unsigned NOT NULL DEFAULT '0', + `ExpansionID` tinyint(4) NOT NULL DEFAULT '0', + `Class` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_disenchant_loot` +-- + +LOCK TABLES `item_disenchant_loot` WRITE; +/*!40000 ALTER TABLE `item_disenchant_loot` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_disenchant_loot` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_effect` +-- + +DROP TABLE IF EXISTS `item_effect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_effect` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `LegacySlotIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TriggerType` tinyint(4) NOT NULL DEFAULT '0', + `Charges` smallint(6) NOT NULL DEFAULT '0', + `CoolDownMSec` int(11) NOT NULL DEFAULT '0', + `CategoryCoolDownMSec` int(11) NOT NULL DEFAULT '0', + `SpellCategoryID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `ChrSpecializationID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ParentItemID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_effect` +-- + +LOCK TABLES `item_effect` WRITE; +/*!40000 ALTER TABLE `item_effect` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_effect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_extended_cost` +-- + +DROP TABLE IF EXISTS `item_extended_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_extended_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredArenaRating` smallint(5) unsigned NOT NULL DEFAULT '0', + `ArenaBracket` tinyint(4) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinFactionID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinReputation` int(11) NOT NULL DEFAULT '0', + `RequiredAchievement` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemID1` int(11) NOT NULL DEFAULT '0', + `ItemID2` int(11) NOT NULL DEFAULT '0', + `ItemID3` int(11) NOT NULL DEFAULT '0', + `ItemID4` int(11) NOT NULL DEFAULT '0', + `ItemID5` int(11) 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', + `CurrencyID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyID5` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyCount1` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount2` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount3` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount4` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount5` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_extended_cost` +-- + +LOCK TABLES `item_extended_cost` WRITE; +/*!40000 ALTER TABLE `item_extended_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_extended_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_level_selector` +-- + +DROP TABLE IF EXISTS `item_level_selector`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_level_selector` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MinItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemLevelSelectorQualitySetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_level_selector` +-- + +LOCK TABLES `item_level_selector` WRITE; +/*!40000 ALTER TABLE `item_level_selector` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_level_selector` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_level_selector_quality` +-- + +DROP TABLE IF EXISTS `item_level_selector_quality`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_level_selector_quality` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `QualityItemBonusListID` int(11) NOT NULL DEFAULT '0', + `Quality` tinyint(4) NOT NULL DEFAULT '0', + `ParentILSQualitySetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_level_selector_quality` +-- + +LOCK TABLES `item_level_selector_quality` WRITE; +/*!40000 ALTER TABLE `item_level_selector_quality` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_level_selector_quality` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_level_selector_quality_set` +-- + +DROP TABLE IF EXISTS `item_level_selector_quality_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_level_selector_quality_set` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `IlvlRare` smallint(6) NOT NULL DEFAULT '0', + `IlvlEpic` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_level_selector_quality_set` +-- + +LOCK TABLES `item_level_selector_quality_set` WRITE; +/*!40000 ALTER TABLE `item_level_selector_quality_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_level_selector_quality_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_limit_category` +-- + +DROP TABLE IF EXISTS `item_limit_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_limit_category` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Quantity` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_limit_category` +-- + +LOCK TABLES `item_limit_category` WRITE; +/*!40000 ALTER TABLE `item_limit_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_limit_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_limit_category_locale` +-- + +DROP TABLE IF EXISTS `item_limit_category_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_limit_category_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_limit_category_locale` +-- + +LOCK TABLES `item_limit_category_locale` WRITE; +/*!40000 ALTER TABLE `item_limit_category_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_limit_category_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_limit_category_condition` +-- + +DROP TABLE IF EXISTS `item_limit_category_condition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_limit_category_condition` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AddQuantity` tinyint(4) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `ParentItemLimitCategoryID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_limit_category_condition` +-- + +LOCK TABLES `item_limit_category_condition` WRITE; +/*!40000 ALTER TABLE `item_limit_category_condition` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_limit_category_condition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_modified_appearance` +-- + +DROP TABLE IF EXISTS `item_modified_appearance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_modified_appearance` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `ItemAppearanceModifierID` int(11) NOT NULL DEFAULT '0', + `ItemAppearanceID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `TransmogSourceTypeEnum` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_modified_appearance` +-- + +LOCK TABLES `item_modified_appearance` WRITE; +/*!40000 ALTER TABLE `item_modified_appearance` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_modified_appearance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_modified_appearance_extra` +-- + +DROP TABLE IF EXISTS `item_modified_appearance_extra`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_modified_appearance_extra` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `UnequippedIconFileDataID` int(11) NOT NULL DEFAULT '0', + `SheatheType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DisplayWeaponSubclassID` tinyint(4) NOT NULL DEFAULT '0', + `DisplayInventoryType` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_modified_appearance_extra` +-- + +LOCK TABLES `item_modified_appearance_extra` WRITE; +/*!40000 ALTER TABLE `item_modified_appearance_extra` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_modified_appearance_extra` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_name_description` +-- + +DROP TABLE IF EXISTS `item_name_description`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_name_description` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Description` text, + `Color` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_name_description` +-- + +LOCK TABLES `item_name_description` WRITE; +/*!40000 ALTER TABLE `item_name_description` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_name_description` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_name_description_locale` +-- + +DROP TABLE IF EXISTS `item_name_description_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_name_description_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_name_description_locale` +-- + +LOCK TABLES `item_name_description_locale` WRITE; +/*!40000 ALTER TABLE `item_name_description_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_name_description_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_price_base` +-- + +DROP TABLE IF EXISTS `item_price_base`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_price_base` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Armor` float NOT NULL DEFAULT '0', + `Weapon` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_price_base` +-- + +LOCK TABLES `item_price_base` WRITE; +/*!40000 ALTER TABLE `item_price_base` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_price_base` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_search_name` +-- + +DROP TABLE IF EXISTS `item_search_name`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_search_name` ( + `AllowableRace` bigint(20) NOT NULL DEFAULT '0', + `Display` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OverallQualityID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExpansionID` tinyint(4) NOT NULL DEFAULT '0', + `MinFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinReputation` int(11) NOT NULL DEFAULT '0', + `AllowableClass` int(11) NOT NULL DEFAULT '0', + `RequiredLevel` tinyint(4) NOT NULL DEFAULT '0', + `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredAbility` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `Flags3` int(11) NOT NULL DEFAULT '0', + `Flags4` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_search_name` +-- + +LOCK TABLES `item_search_name` WRITE; +/*!40000 ALTER TABLE `item_search_name` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_search_name` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_search_name_locale` +-- + +DROP TABLE IF EXISTS `item_search_name_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_search_name_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Display_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_search_name_locale` +-- + +LOCK TABLES `item_search_name_locale` WRITE; +/*!40000 ALTER TABLE `item_search_name_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_search_name_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_set` +-- + +DROP TABLE IF EXISTS `item_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_set` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `SetFlags` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredSkill` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemID1` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID2` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID3` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID4` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID5` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID6` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID7` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID8` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID9` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID10` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID11` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID12` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID13` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID14` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID15` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID16` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID17` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_set` +-- + +LOCK TABLES `item_set` WRITE; +/*!40000 ALTER TABLE `item_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_set_locale` +-- + +DROP TABLE IF EXISTS `item_set_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_set_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_set_locale` +-- + +LOCK TABLES `item_set_locale` WRITE; +/*!40000 ALTER TABLE `item_set_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_set_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_set_spell` +-- + +DROP TABLE IF EXISTS `item_set_spell`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_set_spell` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrSpecID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `Threshold` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_set_spell` +-- + +LOCK TABLES `item_set_spell` WRITE; +/*!40000 ALTER TABLE `item_set_spell` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_set_spell` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_sparse` +-- + +DROP TABLE IF EXISTS `item_sparse`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_sparse` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AllowableRace` bigint(20) NOT NULL DEFAULT '0', + `Description` text, + `Display3` text, + `Display2` text, + `Display1` text, + `Display` text, + `DmgVariance` float NOT NULL DEFAULT '0', + `DurationInInventory` int(10) unsigned NOT NULL DEFAULT '0', + `QualityModifier` float NOT NULL DEFAULT '0', + `BagFamily` int(10) unsigned NOT NULL DEFAULT '0', + `StartQuestID` int(11) NOT NULL DEFAULT '0', + `ItemRange` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket1` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket2` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket3` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket4` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket5` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket6` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket7` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket8` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket9` float NOT NULL DEFAULT '0', + `StatPercentageOfSocket10` float NOT NULL DEFAULT '0', + `StatPercentEditor1` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor2` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor3` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor4` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor5` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor6` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor7` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor8` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor9` int(11) NOT NULL DEFAULT '0', + `StatPercentEditor10` int(11) NOT NULL DEFAULT '0', + `Stackable` int(11) NOT NULL DEFAULT '0', + `MaxCount` int(11) NOT NULL DEFAULT '0', + `MinReputation` int(11) NOT NULL DEFAULT '0', + `RequiredAbility` int(10) unsigned NOT NULL DEFAULT '0', + `SellPrice` int(10) unsigned NOT NULL DEFAULT '0', + `BuyPrice` int(10) unsigned NOT NULL DEFAULT '0', + `VendorStackCount` int(10) unsigned NOT NULL DEFAULT '0', + `PriceVariance` float NOT NULL DEFAULT '0', + `PriceRandomValue` float NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `Flags3` int(11) NOT NULL DEFAULT '0', + `Flags4` int(11) NOT NULL DEFAULT '0', + `FactionRelated` int(11) NOT NULL DEFAULT '0', + `ModifiedCraftingReagentItemID` int(11) NOT NULL DEFAULT '0', + `ContentTuningID` int(11) NOT NULL DEFAULT '0', + `PlayerLevelToItemLevelCurveID` int(11) NOT NULL DEFAULT '0', + `MaxDurability` int(10) unsigned NOT NULL DEFAULT '0', + `ItemNameDescriptionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredTransmogHoliday` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredHoliday` smallint(5) unsigned NOT NULL DEFAULT '0', + `LimitCategory` smallint(5) unsigned NOT NULL DEFAULT '0', + `GemProperties` smallint(5) unsigned NOT NULL DEFAULT '0', + `SocketMatchEnchantmentId` smallint(5) unsigned NOT NULL DEFAULT '0', + `TotemCategoryID` smallint(5) unsigned NOT NULL DEFAULT '0', + `InstanceBound` smallint(5) unsigned NOT NULL DEFAULT '0', + `ZoneBound1` smallint(5) unsigned NOT NULL DEFAULT '0', + `ZoneBound2` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemSet` smallint(5) unsigned NOT NULL DEFAULT '0', + `LockID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PageID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemDelay` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `AllowableClass` smallint(6) NOT NULL DEFAULT '0', + `ItemRandomSuffixGroupID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RandomSelect` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDamage5` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxDamage5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Resistances1` smallint(6) NOT NULL DEFAULT '0', + `Resistances2` smallint(6) NOT NULL DEFAULT '0', + `Resistances3` smallint(6) NOT NULL DEFAULT '0', + `Resistances4` smallint(6) NOT NULL DEFAULT '0', + `Resistances5` smallint(6) NOT NULL DEFAULT '0', + `Resistances6` smallint(6) NOT NULL DEFAULT '0', + `Resistances7` smallint(6) NOT NULL DEFAULT '0', + `ScalingStatDistributionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `StatModifierBonusAmount1` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount2` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount3` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount4` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount5` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount6` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount7` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount8` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount9` smallint(6) NOT NULL DEFAULT '0', + `StatModifierBonusAmount10` smallint(6) NOT NULL DEFAULT '0', + `ExpansionID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ArtifactID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellWeight` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellWeightCategory` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SocketType1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SocketType2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SocketType3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SheatheType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Material` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PageMaterialID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LanguageID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Bonding` tinyint(3) unsigned NOT NULL DEFAULT '0', + `DamageDamageType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `StatModifierBonusStat1` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat2` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat3` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat4` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat5` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat6` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat7` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat8` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat9` tinyint(4) NOT NULL DEFAULT '0', + `StatModifierBonusStat10` tinyint(4) NOT NULL DEFAULT '0', + `ContainerSlots` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RequiredPVPMedal` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RequiredPVPRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `InventoryType` tinyint(4) NOT NULL DEFAULT '0', + `OverallQualityID` tinyint(4) NOT NULL DEFAULT '0', + `AmmunitionType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RequiredLevel` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_sparse` +-- + +LOCK TABLES `item_sparse` WRITE; +/*!40000 ALTER TABLE `item_sparse` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_sparse` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_sparse_locale` +-- + +DROP TABLE IF EXISTS `item_sparse_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_sparse_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `Display3_lang` text, + `Display2_lang` text, + `Display1_lang` text, + `Display_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_sparse_locale` +-- + +LOCK TABLES `item_sparse_locale` WRITE; +/*!40000 ALTER TABLE `item_sparse_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_sparse_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_spec` +-- + +DROP TABLE IF EXISTS `item_spec`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_spec` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PrimaryStat` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SecondaryStat` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpecializationID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_spec` +-- + +LOCK TABLES `item_spec` WRITE; +/*!40000 ALTER TABLE `item_spec` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_spec` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_spec_override` +-- + +DROP TABLE IF EXISTS `item_spec_override`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_spec_override` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpecID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_spec_override` +-- + +LOCK TABLES `item_spec_override` WRITE; +/*!40000 ALTER TABLE `item_spec_override` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_spec_override` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `item_x_bonus_tree` +-- + +DROP TABLE IF EXISTS `item_x_bonus_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `item_x_bonus_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemBonusTreeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `item_x_bonus_tree` +-- + +LOCK TABLES `item_x_bonus_tree` WRITE; +/*!40000 ALTER TABLE `item_x_bonus_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `item_x_bonus_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_encounter` +-- + +DROP TABLE IF EXISTS `journal_encounter`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_encounter` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `MapX` float NOT NULL DEFAULT '0', + `MapY` float NOT NULL DEFAULT '0', + `JournalInstanceID` smallint(5) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(10) unsigned NOT NULL DEFAULT '0', + `FirstSectionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiMapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MapDisplayConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `DifficultyMask` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_encounter` +-- + +LOCK TABLES `journal_encounter` WRITE; +/*!40000 ALTER TABLE `journal_encounter` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_encounter` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_encounter_locale` +-- + +DROP TABLE IF EXISTS `journal_encounter_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_encounter_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_encounter_locale` +-- + +LOCK TABLES `journal_encounter_locale` WRITE; +/*!40000 ALTER TABLE `journal_encounter_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_encounter_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_encounter_section` +-- + +DROP TABLE IF EXISTS `journal_encounter_section`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_encounter_section` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Title` text, + `BodyText` text, + `JournalEncounterID` smallint(5) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ParentSectionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `FirstChildSectionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `NextSiblingSectionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `IconCreatureDisplayInfoID` int(10) unsigned NOT NULL DEFAULT '0', + `UiModelSceneID` int(11) NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `IconFileDataID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `IconFlags` int(11) NOT NULL DEFAULT '0', + `DifficultyMask` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_encounter_section` +-- + +LOCK TABLES `journal_encounter_section` WRITE; +/*!40000 ALTER TABLE `journal_encounter_section` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_encounter_section` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_encounter_section_locale` +-- + +DROP TABLE IF EXISTS `journal_encounter_section_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_encounter_section_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Title_lang` text, + `BodyText_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_encounter_section_locale` +-- + +LOCK TABLES `journal_encounter_section_locale` WRITE; +/*!40000 ALTER TABLE `journal_encounter_section_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_encounter_section_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_instance` +-- + +DROP TABLE IF EXISTS `journal_instance`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_instance` ( + `Name` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `BackgroundFileDataID` int(11) NOT NULL DEFAULT '0', + `ButtonFileDataID` int(11) NOT NULL DEFAULT '0', + `ButtonSmallFileDataID` int(11) NOT NULL DEFAULT '0', + `LoreFileDataID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `AreaID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_instance` +-- + +LOCK TABLES `journal_instance` WRITE; +/*!40000 ALTER TABLE `journal_instance` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_instance` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_instance_locale` +-- + +DROP TABLE IF EXISTS `journal_instance_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_instance_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_instance_locale` +-- + +LOCK TABLES `journal_instance_locale` WRITE; +/*!40000 ALTER TABLE `journal_instance_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_instance_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_tier` +-- + +DROP TABLE IF EXISTS `journal_tier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_tier` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_tier` +-- + +LOCK TABLES `journal_tier` WRITE; +/*!40000 ALTER TABLE `journal_tier` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_tier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `journal_tier_locale` +-- + +DROP TABLE IF EXISTS `journal_tier_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `journal_tier_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `journal_tier_locale` +-- + +LOCK TABLES `journal_tier_locale` WRITE; +/*!40000 ALTER TABLE `journal_tier_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `journal_tier_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `keychain` +-- + +DROP TABLE IF EXISTS `keychain`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `keychain` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Key1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key9` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key10` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key11` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key12` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key13` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key14` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key15` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key16` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key17` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key18` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key19` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key20` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key21` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key22` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key23` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key24` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key25` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key26` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key27` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key28` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key29` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key30` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key31` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key32` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `keychain` +-- + +LOCK TABLES `keychain` WRITE; +/*!40000 ALTER TABLE `keychain` DISABLE KEYS */; +/*!40000 ALTER TABLE `keychain` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `keystone_affix` +-- + +DROP TABLE IF EXISTS `keystone_affix`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `keystone_affix` ( + `Name` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FiledataID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `keystone_affix` +-- + +LOCK TABLES `keystone_affix` WRITE; +/*!40000 ALTER TABLE `keystone_affix` DISABLE KEYS */; +/*!40000 ALTER TABLE `keystone_affix` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `keystone_affix_locale` +-- + +DROP TABLE IF EXISTS `keystone_affix_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `keystone_affix_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `keystone_affix_locale` +-- + +LOCK TABLES `keystone_affix_locale` WRITE; +/*!40000 ALTER TABLE `keystone_affix_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `keystone_affix_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `language_words` +-- + +DROP TABLE IF EXISTS `language_words`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `language_words` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Word` text, + `LanguageID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `language_words` +-- + +LOCK TABLES `language_words` WRITE; +/*!40000 ALTER TABLE `language_words` DISABLE KEYS */; +/*!40000 ALTER TABLE `language_words` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `languages` +-- + +DROP TABLE IF EXISTS `languages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `languages` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `UiTextureKitID` int(11) NOT NULL DEFAULT '0', + `UiTextureKitElementCount` int(11) NOT NULL DEFAULT '0', + `LearningCurveID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `languages` +-- + +LOCK TABLES `languages` WRITE; +/*!40000 ALTER TABLE `languages` DISABLE KEYS */; +/*!40000 ALTER TABLE `languages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `languages_locale` +-- + +DROP TABLE IF EXISTS `languages_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `languages_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `languages_locale` +-- + +LOCK TABLES `languages_locale` WRITE; +/*!40000 ALTER TABLE `languages_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `languages_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lfg_dungeons` +-- + +DROP TABLE IF EXISTS `lfg_dungeons`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `lfg_dungeons` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Description` text, + `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `TypeID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Subtype` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Faction` tinyint(4) NOT NULL DEFAULT '0', + `IconTextureFileID` int(11) NOT NULL DEFAULT '0', + `RewardsBgTextureFileID` int(11) NOT NULL DEFAULT '0', + `PopupBgTextureFileID` int(11) NOT NULL DEFAULT '0', + `ExpansionLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MapID` smallint(6) NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinGear` float NOT NULL DEFAULT '0', + `GroupID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RequiredPlayerConditionId` int(10) unsigned NOT NULL DEFAULT '0', + `TargetLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TargetLevelMin` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TargetLevelMax` smallint(5) unsigned NOT NULL DEFAULT '0', + `RandomID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ScenarioID` smallint(5) unsigned NOT NULL DEFAULT '0', + `FinalEncounterID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CountTank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CountHealer` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CountDamage` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinCountTank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinCountHealer` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinCountDamage` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BonusReputationAmount` smallint(5) unsigned NOT NULL DEFAULT '0', + `MentorItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `MentorCharLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lfg_dungeons` +-- + +LOCK TABLES `lfg_dungeons` WRITE; +/*!40000 ALTER TABLE `lfg_dungeons` DISABLE KEYS */; +/*!40000 ALTER TABLE `lfg_dungeons` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lfg_dungeons_locale` +-- + +DROP TABLE IF EXISTS `lfg_dungeons_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `lfg_dungeons_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lfg_dungeons_locale` +-- + +LOCK TABLES `lfg_dungeons_locale` WRITE; +/*!40000 ALTER TABLE `lfg_dungeons_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `lfg_dungeons_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `light` +-- + +DROP TABLE IF EXISTS `light`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `light` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GameCoordsX` float NOT NULL DEFAULT '0', + `GameCoordsY` float NOT NULL DEFAULT '0', + `GameCoordsZ` float NOT NULL DEFAULT '0', + `GameFalloffStart` float NOT NULL DEFAULT '0', + `GameFalloffEnd` float NOT NULL DEFAULT '0', + `ContinentID` smallint(6) NOT NULL DEFAULT '0', + `LightParamsID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID5` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID6` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID7` smallint(5) unsigned NOT NULL DEFAULT '0', + `LightParamsID8` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `light` +-- + +LOCK TABLES `light` WRITE; +/*!40000 ALTER TABLE `light` DISABLE KEYS */; +/*!40000 ALTER TABLE `light` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `liquid_type` +-- + +DROP TABLE IF EXISTS `liquid_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `liquid_type` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Texture1` text, + `Texture2` text, + `Texture3` text, + `Texture4` text, + `Texture5` text, + `Texture6` text, + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `SoundBank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `MaxDarkenDepth` float NOT NULL DEFAULT '0', + `FogDarkenIntensity` float NOT NULL DEFAULT '0', + `AmbDarkenIntensity` float NOT NULL DEFAULT '0', + `DirDarkenIntensity` float NOT NULL DEFAULT '0', + `LightID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ParticleScale` float NOT NULL DEFAULT '0', + `ParticleMovement` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ParticleTexSlots` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaterialID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinimapStaticCol` int(11) NOT NULL DEFAULT '0', + `FrameCountTexture1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FrameCountTexture2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FrameCountTexture3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FrameCountTexture4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FrameCountTexture5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `FrameCountTexture6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Color1` int(11) NOT NULL DEFAULT '0', + `Color2` int(11) NOT NULL DEFAULT '0', + `Float1` float NOT NULL DEFAULT '0', + `Float2` float NOT NULL DEFAULT '0', + `Float3` float NOT NULL DEFAULT '0', + `Float4` float NOT NULL DEFAULT '0', + `Float5` float NOT NULL DEFAULT '0', + `Float6` float NOT NULL DEFAULT '0', + `Float7` float NOT NULL DEFAULT '0', + `Float8` float NOT NULL DEFAULT '0', + `Float9` float NOT NULL DEFAULT '0', + `Float10` float NOT NULL DEFAULT '0', + `Float11` float NOT NULL DEFAULT '0', + `Float12` float NOT NULL DEFAULT '0', + `Float13` float NOT NULL DEFAULT '0', + `Float14` float NOT NULL DEFAULT '0', + `Float15` float NOT NULL DEFAULT '0', + `Float16` float NOT NULL DEFAULT '0', + `Float17` float NOT NULL DEFAULT '0', + `Float18` float NOT NULL DEFAULT '0', + `Int1` int(10) unsigned NOT NULL DEFAULT '0', + `Int2` int(10) unsigned NOT NULL DEFAULT '0', + `Int3` int(10) unsigned NOT NULL DEFAULT '0', + `Int4` int(10) unsigned NOT NULL DEFAULT '0', + `Coefficient1` float NOT NULL DEFAULT '0', + `Coefficient2` float NOT NULL DEFAULT '0', + `Coefficient3` float NOT NULL DEFAULT '0', + `Coefficient4` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `liquid_type` +-- + +LOCK TABLES `liquid_type` WRITE; +/*!40000 ALTER TABLE `liquid_type` DISABLE KEYS */; +/*!40000 ALTER TABLE `liquid_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lock` +-- + +DROP TABLE IF EXISTS `lock`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `lock` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Index1` int(11) NOT NULL DEFAULT '0', + `Index2` int(11) NOT NULL DEFAULT '0', + `Index3` int(11) NOT NULL DEFAULT '0', + `Index4` int(11) NOT NULL DEFAULT '0', + `Index5` int(11) NOT NULL DEFAULT '0', + `Index6` int(11) NOT NULL DEFAULT '0', + `Index7` int(11) NOT NULL DEFAULT '0', + `Index8` int(11) NOT NULL DEFAULT '0', + `Skill1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Skill8` smallint(5) unsigned NOT NULL DEFAULT '0', + `Type1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Type8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Action8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `lock` +-- + +LOCK TABLES `lock` WRITE; +/*!40000 ALTER TABLE `lock` DISABLE KEYS */; +/*!40000 ALTER TABLE `lock` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mail_template` +-- + +DROP TABLE IF EXISTS `mail_template`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mail_template` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Body` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mail_template` +-- + +LOCK TABLES `mail_template` WRITE; +/*!40000 ALTER TABLE `mail_template` DISABLE KEYS */; +/*!40000 ALTER TABLE `mail_template` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mail_template_locale` +-- + +DROP TABLE IF EXISTS `mail_template_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mail_template_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Body_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mail_template_locale` +-- + +LOCK TABLES `mail_template_locale` WRITE; +/*!40000 ALTER TABLE `mail_template_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `mail_template_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map` +-- + +DROP TABLE IF EXISTS `map`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Directory` text, + `MapName` text, + `MapDescription0` text, + `MapDescription1` text, + `PvpShortDescription` text, + `PvpLongDescription` text, + `MapType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `InstanceType` tinyint(4) NOT NULL DEFAULT '0', + `ExpansionID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AreaTableID` smallint(5) unsigned NOT NULL DEFAULT '0', + `LoadingScreenID` smallint(6) NOT NULL DEFAULT '0', + `TimeOfDayOverride` smallint(6) NOT NULL DEFAULT '0', + `ParentMapID` smallint(6) NOT NULL DEFAULT '0', + `CosmeticParentMapID` smallint(6) NOT NULL DEFAULT '0', + `TimeOffset` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinimapIconScale` float NOT NULL DEFAULT '0', + `RaidOffset` int(11) NOT NULL DEFAULT '0', + `CorpseMapID` smallint(6) NOT NULL DEFAULT '0', + `MaxPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WindSettingsID` smallint(6) NOT NULL DEFAULT '0', + `ZmpFileDataID` int(11) NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `Flags3` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map` +-- + +LOCK TABLES `map` WRITE; +/*!40000 ALTER TABLE `map` DISABLE KEYS */; +/*!40000 ALTER TABLE `map` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_locale` +-- + +DROP TABLE IF EXISTS `map_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `MapName_lang` text, + `MapDescription0_lang` text, + `MapDescription1_lang` text, + `PvpShortDescription_lang` text, + `PvpLongDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_locale` +-- + +LOCK TABLES `map_locale` WRITE; +/*!40000 ALTER TABLE `map_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_challenge_mode` +-- + +DROP TABLE IF EXISTS `map_challenge_mode`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_challenge_mode` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExpansionLevel` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredWorldStateID` int(11) NOT NULL DEFAULT '0', + `CriteriaCount1` smallint(6) NOT NULL DEFAULT '0', + `CriteriaCount2` smallint(6) NOT NULL DEFAULT '0', + `CriteriaCount3` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_challenge_mode` +-- + +LOCK TABLES `map_challenge_mode` WRITE; +/*!40000 ALTER TABLE `map_challenge_mode` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_challenge_mode` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_challenge_mode_locale` +-- + +DROP TABLE IF EXISTS `map_challenge_mode_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_challenge_mode_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_challenge_mode_locale` +-- + +LOCK TABLES `map_challenge_mode_locale` WRITE; +/*!40000 ALTER TABLE `map_challenge_mode_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_challenge_mode_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_difficulty` +-- + +DROP TABLE IF EXISTS `map_difficulty`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_difficulty` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Message` text, + `ItemContextPickerID` int(10) unsigned NOT NULL DEFAULT '0', + `ContentTuningID` int(11) NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LockID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ResetInterval` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxPlayers` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ItemContext` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MapID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_difficulty` +-- + +LOCK TABLES `map_difficulty` WRITE; +/*!40000 ALTER TABLE `map_difficulty` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_difficulty` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_difficulty_locale` +-- + +DROP TABLE IF EXISTS `map_difficulty_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_difficulty_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Message_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_difficulty_locale` +-- + +LOCK TABLES `map_difficulty_locale` WRITE; +/*!40000 ALTER TABLE `map_difficulty_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_difficulty_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_difficulty_x_condition` +-- + +DROP TABLE IF EXISTS `map_difficulty_x_condition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_difficulty_x_condition` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FailureDescription` text, + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `MapDifficultyID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_difficulty_x_condition` +-- + +LOCK TABLES `map_difficulty_x_condition` WRITE; +/*!40000 ALTER TABLE `map_difficulty_x_condition` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_difficulty_x_condition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `map_difficulty_x_condition_locale` +-- + +DROP TABLE IF EXISTS `map_difficulty_x_condition_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `map_difficulty_x_condition_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `FailureDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `map_difficulty_x_condition_locale` +-- + +LOCK TABLES `map_difficulty_x_condition_locale` WRITE; +/*!40000 ALTER TABLE `map_difficulty_x_condition_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `map_difficulty_x_condition_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `modifier_tree` +-- + +DROP TABLE IF EXISTS `modifier_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `modifier_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Parent` int(10) unsigned NOT NULL DEFAULT '0', + `Operator` tinyint(4) NOT NULL DEFAULT '0', + `Amount` tinyint(4) NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '0', + `Asset` int(11) NOT NULL DEFAULT '0', + `SecondaryAsset` int(11) NOT NULL DEFAULT '0', + `TertiaryAsset` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `modifier_tree` +-- + +LOCK TABLES `modifier_tree` WRITE; +/*!40000 ALTER TABLE `modifier_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `modifier_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mount` +-- + +DROP TABLE IF EXISTS `mount`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mount` ( + `Name` text, + `SourceText` text, + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MountTypeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `SourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `SourceSpellID` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `MountFlyRideHeight` float NOT NULL DEFAULT '0', + `UiModelSceneID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mount` +-- + +LOCK TABLES `mount` WRITE; +/*!40000 ALTER TABLE `mount` DISABLE KEYS */; +/*!40000 ALTER TABLE `mount` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mount_locale` +-- + +DROP TABLE IF EXISTS `mount_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mount_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `SourceText_lang` text, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mount_locale` +-- + +LOCK TABLES `mount_locale` WRITE; +/*!40000 ALTER TABLE `mount_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `mount_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mount_capability` +-- + +DROP TABLE IF EXISTS `mount_capability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mount_capability` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ReqRidingSkill` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReqAreaID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ReqSpellAuraID` int(10) unsigned NOT NULL DEFAULT '0', + `ReqSpellKnownID` int(11) NOT NULL DEFAULT '0', + `ModSpellAuraID` int(11) NOT NULL DEFAULT '0', + `ReqMapID` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mount_capability` +-- + +LOCK TABLES `mount_capability` WRITE; +/*!40000 ALTER TABLE `mount_capability` DISABLE KEYS */; +/*!40000 ALTER TABLE `mount_capability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mount_type_x_capability` +-- + +DROP TABLE IF EXISTS `mount_type_x_capability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mount_type_x_capability` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MountTypeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MountCapabilityID` smallint(5) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mount_type_x_capability` +-- + +LOCK TABLES `mount_type_x_capability` WRITE; +/*!40000 ALTER TABLE `mount_type_x_capability` DISABLE KEYS */; +/*!40000 ALTER TABLE `mount_type_x_capability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mount_x_display` +-- + +DROP TABLE IF EXISTS `mount_x_display`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mount_x_display` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureDisplayInfoID` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `MountID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mount_x_display` +-- + +LOCK TABLES `mount_x_display` WRITE; +/*!40000 ALTER TABLE `mount_x_display` DISABLE KEYS */; +/*!40000 ALTER TABLE `mount_x_display` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `movie` +-- + +DROP TABLE IF EXISTS `movie`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `movie` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Volume` tinyint(3) unsigned NOT NULL DEFAULT '0', + `KeyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AudioFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `SubtitleFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `movie` +-- + +LOCK TABLES `movie` WRITE; +/*!40000 ALTER TABLE `movie` DISABLE KEYS */; +/*!40000 ALTER TABLE `movie` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `mythic_plus_season` +-- + +DROP TABLE IF EXISTS `mythic_plus_season`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `mythic_plus_season` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MilestoneSeason` int(11) NOT NULL DEFAULT '0', + `ExpansionLevel` int(11) NOT NULL DEFAULT '0', + `HeroicLFGDungeonMinGear` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `mythic_plus_season` +-- + +LOCK TABLES `mythic_plus_season` WRITE; +/*!40000 ALTER TABLE `mythic_plus_season` DISABLE KEYS */; +/*!40000 ALTER TABLE `mythic_plus_season` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `name_gen` +-- + +DROP TABLE IF EXISTS `name_gen`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `name_gen` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `RaceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Sex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `name_gen` +-- + +LOCK TABLES `name_gen` WRITE; +/*!40000 ALTER TABLE `name_gen` DISABLE KEYS */; +/*!40000 ALTER TABLE `name_gen` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `names_profanity` +-- + +DROP TABLE IF EXISTS `names_profanity`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `names_profanity` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Language` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `names_profanity` +-- + +LOCK TABLES `names_profanity` WRITE; +/*!40000 ALTER TABLE `names_profanity` DISABLE KEYS */; +/*!40000 ALTER TABLE `names_profanity` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `names_reserved` +-- + +DROP TABLE IF EXISTS `names_reserved`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `names_reserved` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `names_reserved` +-- + +LOCK TABLES `names_reserved` WRITE; +/*!40000 ALTER TABLE `names_reserved` DISABLE KEYS */; +/*!40000 ALTER TABLE `names_reserved` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `names_reserved_locale` +-- + +DROP TABLE IF EXISTS `names_reserved_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `names_reserved_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `LocaleMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `names_reserved_locale` +-- + +LOCK TABLES `names_reserved_locale` WRITE; +/*!40000 ALTER TABLE `names_reserved_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `names_reserved_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `num_talents_at_level` +-- + +DROP TABLE IF EXISTS `num_talents_at_level`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `num_talents_at_level` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `NumTalents` int(11) NOT NULL DEFAULT '0', + `NumTalentsDeathKnight` int(11) NOT NULL DEFAULT '0', + `NumTalentsDemonHunter` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `num_talents_at_level` +-- + +LOCK TABLES `num_talents_at_level` WRITE; +/*!40000 ALTER TABLE `num_talents_at_level` DISABLE KEYS */; +/*!40000 ALTER TABLE `num_talents_at_level` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `override_spell_data` +-- + +DROP TABLE IF EXISTS `override_spell_data`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `override_spell_data` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Spells1` int(11) NOT NULL DEFAULT '0', + `Spells2` int(11) NOT NULL DEFAULT '0', + `Spells3` int(11) NOT NULL DEFAULT '0', + `Spells4` int(11) NOT NULL DEFAULT '0', + `Spells5` int(11) NOT NULL DEFAULT '0', + `Spells6` int(11) NOT NULL DEFAULT '0', + `Spells7` int(11) NOT NULL DEFAULT '0', + `Spells8` int(11) NOT NULL DEFAULT '0', + `Spells9` int(11) NOT NULL DEFAULT '0', + `Spells10` int(11) NOT NULL DEFAULT '0', + `PlayerActionBarFileDataID` int(11) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `override_spell_data` +-- + +LOCK TABLES `override_spell_data` WRITE; +/*!40000 ALTER TABLE `override_spell_data` DISABLE KEYS */; +/*!40000 ALTER TABLE `override_spell_data` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `paragon_reputation` +-- + +DROP TABLE IF EXISTS `paragon_reputation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `paragon_reputation` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FactionID` int(11) NOT NULL DEFAULT '0', + `LevelThreshold` int(11) NOT NULL DEFAULT '0', + `QuestID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `paragon_reputation` +-- + +LOCK TABLES `paragon_reputation` WRITE; +/*!40000 ALTER TABLE `paragon_reputation` DISABLE KEYS */; +/*!40000 ALTER TABLE `paragon_reputation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `phase` +-- + +DROP TABLE IF EXISTS `phase`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `phase` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `phase` +-- + +LOCK TABLES `phase` WRITE; +/*!40000 ALTER TABLE `phase` DISABLE KEYS */; +/*!40000 ALTER TABLE `phase` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `phase_x_phase_group` +-- + +DROP TABLE IF EXISTS `phase_x_phase_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `phase_x_phase_group` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PhaseID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PhaseGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `phase_x_phase_group` +-- + +LOCK TABLES `phase_x_phase_group` WRITE; +/*!40000 ALTER TABLE `phase_x_phase_group` DISABLE KEYS */; +/*!40000 ALTER TABLE `phase_x_phase_group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `player_condition` +-- + +DROP TABLE IF EXISTS `player_condition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `player_condition` ( + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `FailureDescription` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MinLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `SkillLogic` int(10) unsigned NOT NULL DEFAULT '0', + `LanguageID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinLanguage` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxLanguage` int(11) NOT NULL DEFAULT '0', + `MaxFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxReputation` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ReputationLogic` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentPvpFaction` tinyint(4) NOT NULL DEFAULT '0', + `PvpMedal` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PrevQuestLogic` int(10) unsigned NOT NULL DEFAULT '0', + `CurrQuestLogic` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentCompletedQuestLogic` int(10) unsigned NOT NULL DEFAULT '0', + `SpellLogic` int(10) unsigned NOT NULL DEFAULT '0', + `ItemLogic` int(10) unsigned NOT NULL DEFAULT '0', + `ItemFlags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AuraSpellLogic` int(10) unsigned NOT NULL DEFAULT '0', + `WorldStateExpressionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `WeatherID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PartyStatus` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LifetimeMaxPVPRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AchievementLogic` int(10) unsigned NOT NULL DEFAULT '0', + `Gender` tinyint(4) NOT NULL DEFAULT '0', + `NativeGender` tinyint(4) NOT NULL DEFAULT '0', + `AreaLogic` int(10) unsigned NOT NULL DEFAULT '0', + `LfgLogic` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyLogic` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillID` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillLogic` int(10) unsigned NOT NULL DEFAULT '0', + `MinExpansionLevel` tinyint(4) NOT NULL DEFAULT '0', + `MaxExpansionLevel` tinyint(4) NOT NULL DEFAULT '0', + `MinAvgItemLevel` int(11) NOT NULL DEFAULT '0', + `MaxAvgItemLevel` int(11) NOT NULL DEFAULT '0', + `MinAvgEquippedItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxAvgEquippedItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `PhaseUseFlags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PhaseID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PhaseGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ChrSpecializationIndex` tinyint(4) NOT NULL DEFAULT '0', + `ChrSpecializationRole` tinyint(4) NOT NULL DEFAULT '0', + `ModifierTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `PowerType` tinyint(4) NOT NULL DEFAULT '0', + `PowerTypeComp` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PowerTypeValue` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WeaponSubclassMask` int(11) NOT NULL DEFAULT '0', + `MaxGuildLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinGuildLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxExpansionTier` tinyint(4) NOT NULL DEFAULT '0', + `MinExpansionTier` tinyint(4) NOT NULL DEFAULT '0', + `MinPVPRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxPVPRank` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SkillID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `SkillID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `SkillID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `SkillID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinSkill1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinSkill2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinSkill3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinSkill4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxSkill1` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxSkill2` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxSkill3` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxSkill4` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinFactionID1` int(10) unsigned NOT NULL DEFAULT '0', + `MinFactionID2` int(10) unsigned NOT NULL DEFAULT '0', + `MinFactionID3` int(10) unsigned NOT NULL DEFAULT '0', + `MinReputation1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinReputation2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinReputation3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `PrevQuestID1` int(10) unsigned NOT NULL DEFAULT '0', + `PrevQuestID2` int(10) unsigned NOT NULL DEFAULT '0', + `PrevQuestID3` int(10) unsigned NOT NULL DEFAULT '0', + `PrevQuestID4` int(10) unsigned NOT NULL DEFAULT '0', + `CurrQuestID1` int(10) unsigned NOT NULL DEFAULT '0', + `CurrQuestID2` int(10) unsigned NOT NULL DEFAULT '0', + `CurrQuestID3` int(10) unsigned NOT NULL DEFAULT '0', + `CurrQuestID4` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentCompletedQuestID1` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentCompletedQuestID2` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentCompletedQuestID3` int(10) unsigned NOT NULL DEFAULT '0', + `CurrentCompletedQuestID4` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID1` int(11) NOT NULL DEFAULT '0', + `SpellID2` int(11) NOT NULL DEFAULT '0', + `SpellID3` int(11) NOT NULL DEFAULT '0', + `SpellID4` int(11) NOT NULL DEFAULT '0', + `ItemID1` int(11) NOT NULL DEFAULT '0', + `ItemID2` int(11) NOT NULL DEFAULT '0', + `ItemID3` int(11) NOT NULL DEFAULT '0', + `ItemID4` int(11) NOT NULL DEFAULT '0', + `ItemCount1` int(10) unsigned NOT NULL DEFAULT '0', + `ItemCount2` int(10) unsigned NOT NULL DEFAULT '0', + `ItemCount3` int(10) unsigned NOT NULL DEFAULT '0', + `ItemCount4` int(10) unsigned NOT NULL DEFAULT '0', + `Explored1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Explored2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Time1` int(10) unsigned NOT NULL DEFAULT '0', + `Time2` int(10) unsigned NOT NULL DEFAULT '0', + `AuraSpellID1` int(11) NOT NULL DEFAULT '0', + `AuraSpellID2` int(11) NOT NULL DEFAULT '0', + `AuraSpellID3` int(11) NOT NULL DEFAULT '0', + `AuraSpellID4` int(11) NOT NULL DEFAULT '0', + `AuraStacks1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AuraStacks2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AuraStacks3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AuraStacks4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Achievement1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Achievement2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Achievement3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Achievement4` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `LfgStatus1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgStatus2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgStatus3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgStatus4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgCompare1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgCompare2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgCompare3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgCompare4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LfgValue1` int(10) unsigned NOT NULL DEFAULT '0', + `LfgValue2` int(10) unsigned NOT NULL DEFAULT '0', + `LfgValue3` int(10) unsigned NOT NULL DEFAULT '0', + `LfgValue4` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyID1` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyID2` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyID3` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyID4` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount1` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount2` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount3` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyCount4` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster1` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster2` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster3` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster4` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster5` int(10) unsigned NOT NULL DEFAULT '0', + `QuestKillMonster6` int(10) unsigned NOT NULL DEFAULT '0', + `MovementFlags1` int(11) NOT NULL DEFAULT '0', + `MovementFlags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `player_condition` +-- + +LOCK TABLES `player_condition` WRITE; +/*!40000 ALTER TABLE `player_condition` DISABLE KEYS */; +/*!40000 ALTER TABLE `player_condition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `player_condition_locale` +-- + +DROP TABLE IF EXISTS `player_condition_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `player_condition_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `FailureDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `player_condition_locale` +-- + +LOCK TABLES `player_condition_locale` WRITE; +/*!40000 ALTER TABLE `player_condition_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `player_condition_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `power_display` +-- + +DROP TABLE IF EXISTS `power_display`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `power_display` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `GlobalStringBaseTag` text, + `ActualType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Red` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Green` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Blue` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `power_display` +-- + +LOCK TABLES `power_display` WRITE; +/*!40000 ALTER TABLE `power_display` DISABLE KEYS */; +/*!40000 ALTER TABLE `power_display` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `power_type` +-- + +DROP TABLE IF EXISTS `power_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `power_type` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `NameGlobalStringTag` text, + `CostGlobalStringTag` text, + `PowerTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `MinPower` int(11) NOT NULL DEFAULT '0', + `MaxBasePower` int(11) NOT NULL DEFAULT '0', + `CenterPower` int(11) NOT NULL DEFAULT '0', + `DefaultPower` int(11) NOT NULL DEFAULT '0', + `DisplayModifier` int(11) NOT NULL DEFAULT '0', + `RegenInterruptTimeMS` int(11) NOT NULL DEFAULT '0', + `RegenPeace` float NOT NULL DEFAULT '0', + `RegenCombat` float NOT NULL DEFAULT '0', + `Flags` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `power_type` +-- + +LOCK TABLES `power_type` WRITE; +/*!40000 ALTER TABLE `power_type` DISABLE KEYS */; +/*!40000 ALTER TABLE `power_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `prestige_level_info` +-- + +DROP TABLE IF EXISTS `prestige_level_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `prestige_level_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `PrestigeLevel` int(11) NOT NULL DEFAULT '0', + `BadgeTextureFileDataID` int(11) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AwardedAchievementID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `prestige_level_info` +-- + +LOCK TABLES `prestige_level_info` WRITE; +/*!40000 ALTER TABLE `prestige_level_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `prestige_level_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `prestige_level_info_locale` +-- + +DROP TABLE IF EXISTS `prestige_level_info_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `prestige_level_info_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `prestige_level_info_locale` +-- + +LOCK TABLES `prestige_level_info_locale` WRITE; +/*!40000 ALTER TABLE `prestige_level_info_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `prestige_level_info_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_difficulty` +-- + +DROP TABLE IF EXISTS `pvp_difficulty`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_difficulty` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RangeIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MapID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_difficulty` +-- + +LOCK TABLES `pvp_difficulty` WRITE; +/*!40000 ALTER TABLE `pvp_difficulty` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_difficulty` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_item` +-- + +DROP TABLE IF EXISTS `pvp_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `ItemLevelDelta` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_item` +-- + +LOCK TABLES `pvp_item` WRITE; +/*!40000 ALTER TABLE `pvp_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_season` +-- + +DROP TABLE IF EXISTS `pvp_season`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_season` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MilestoneSeason` int(11) NOT NULL DEFAULT '0', + `AllianceAchievementID` int(11) NOT NULL DEFAULT '0', + `HordeAchievementID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_season` +-- + +LOCK TABLES `pvp_season` WRITE; +/*!40000 ALTER TABLE `pvp_season` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_season` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_talent` +-- + +DROP TABLE IF EXISTS `pvp_talent`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_talent` ( + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpecID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `OverridesSpellID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `ActionBarSpellID` int(11) NOT NULL DEFAULT '0', + `PvpTalentCategoryID` int(11) NOT NULL DEFAULT '0', + `LevelRequired` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_talent` +-- + +LOCK TABLES `pvp_talent` WRITE; +/*!40000 ALTER TABLE `pvp_talent` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_talent` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_talent_locale` +-- + +DROP TABLE IF EXISTS `pvp_talent_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_talent_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_talent_locale` +-- + +LOCK TABLES `pvp_talent_locale` WRITE; +/*!40000 ALTER TABLE `pvp_talent_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_talent_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_talent_category` +-- + +DROP TABLE IF EXISTS `pvp_talent_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_talent_category` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TalentSlotMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_talent_category` +-- + +LOCK TABLES `pvp_talent_category` WRITE; +/*!40000 ALTER TABLE `pvp_talent_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_talent_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_talent_slot_unlock` +-- + +DROP TABLE IF EXISTS `pvp_talent_slot_unlock`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_talent_slot_unlock` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Slot` tinyint(4) NOT NULL DEFAULT '0', + `LevelRequired` int(11) NOT NULL DEFAULT '0', + `DeathKnightLevelRequired` int(11) NOT NULL DEFAULT '0', + `DemonHunterLevelRequired` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_talent_slot_unlock` +-- + +LOCK TABLES `pvp_talent_slot_unlock` WRITE; +/*!40000 ALTER TABLE `pvp_talent_slot_unlock` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_talent_slot_unlock` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_tier` +-- + +DROP TABLE IF EXISTS `pvp_tier`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_tier` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `MinRating` smallint(6) NOT NULL DEFAULT '0', + `MaxRating` smallint(6) NOT NULL DEFAULT '0', + `PrevTier` int(11) NOT NULL DEFAULT '0', + `NextTier` int(11) NOT NULL DEFAULT '0', + `BracketID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Rank` tinyint(4) NOT NULL DEFAULT '0', + `RankIconFileDataID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_tier` +-- + +LOCK TABLES `pvp_tier` WRITE; +/*!40000 ALTER TABLE `pvp_tier` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_tier` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `pvp_tier_locale` +-- + +DROP TABLE IF EXISTS `pvp_tier_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `pvp_tier_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `pvp_tier_locale` +-- + +LOCK TABLES `pvp_tier_locale` WRITE; +/*!40000 ALTER TABLE `pvp_tier_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `pvp_tier_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_faction_reward` +-- + +DROP TABLE IF EXISTS `quest_faction_reward`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_faction_reward` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty1` smallint(6) NOT NULL DEFAULT '0', + `Difficulty2` smallint(6) NOT NULL DEFAULT '0', + `Difficulty3` smallint(6) NOT NULL DEFAULT '0', + `Difficulty4` smallint(6) NOT NULL DEFAULT '0', + `Difficulty5` smallint(6) NOT NULL DEFAULT '0', + `Difficulty6` smallint(6) NOT NULL DEFAULT '0', + `Difficulty7` smallint(6) NOT NULL DEFAULT '0', + `Difficulty8` smallint(6) NOT NULL DEFAULT '0', + `Difficulty9` smallint(6) NOT NULL DEFAULT '0', + `Difficulty10` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_faction_reward` +-- + +LOCK TABLES `quest_faction_reward` WRITE; +/*!40000 ALTER TABLE `quest_faction_reward` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_faction_reward` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_info` +-- + +DROP TABLE IF EXISTS `quest_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `InfoName` text, + `Type` tinyint(4) NOT NULL DEFAULT '0', + `Modifiers` int(11) NOT NULL DEFAULT '0', + `Profession` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_info` +-- + +LOCK TABLES `quest_info` WRITE; +/*!40000 ALTER TABLE `quest_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_info_locale` +-- + +DROP TABLE IF EXISTS `quest_info_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_info_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `InfoName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_info_locale` +-- + +LOCK TABLES `quest_info_locale` WRITE; +/*!40000 ALTER TABLE `quest_info_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_info_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_line_x_quest` +-- + +DROP TABLE IF EXISTS `quest_line_x_quest`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_line_x_quest` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `QuestLineID` int(10) unsigned NOT NULL DEFAULT '0', + `QuestID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_line_x_quest` +-- + +LOCK TABLES `quest_line_x_quest` WRITE; +/*!40000 ALTER TABLE `quest_line_x_quest` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_line_x_quest` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_money_reward` +-- + +DROP TABLE IF EXISTS `quest_money_reward`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_money_reward` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty1` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty2` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty3` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty4` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty5` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty6` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty7` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty8` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty9` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty10` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_money_reward` +-- + +LOCK TABLES `quest_money_reward` WRITE; +/*!40000 ALTER TABLE `quest_money_reward` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_money_reward` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_package_item` +-- + +DROP TABLE IF EXISTS `quest_package_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_package_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PackageID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `ItemQuantity` int(10) unsigned NOT NULL DEFAULT '0', + `DisplayType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_package_item` +-- + +LOCK TABLES `quest_package_item` WRITE; +/*!40000 ALTER TABLE `quest_package_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_package_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_sort` +-- + +DROP TABLE IF EXISTS `quest_sort`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_sort` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SortName` text, + `UiOrderIndex` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_sort` +-- + +LOCK TABLES `quest_sort` WRITE; +/*!40000 ALTER TABLE `quest_sort` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_sort` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_sort_locale` +-- + +DROP TABLE IF EXISTS `quest_sort_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_sort_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `SortName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_sort_locale` +-- + +LOCK TABLES `quest_sort_locale` WRITE; +/*!40000 ALTER TABLE `quest_sort_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_sort_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_v2` +-- + +DROP TABLE IF EXISTS `quest_v2`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_v2` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UniqueBitFlag` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_v2` +-- + +LOCK TABLES `quest_v2` WRITE; +/*!40000 ALTER TABLE `quest_v2` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_v2` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `quest_xp` +-- + +DROP TABLE IF EXISTS `quest_xp`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `quest_xp` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Difficulty1` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty3` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty4` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty5` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty6` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty7` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty8` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty9` smallint(5) unsigned NOT NULL DEFAULT '0', + `Difficulty10` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `quest_xp` +-- + +LOCK TABLES `quest_xp` WRITE; +/*!40000 ALTER TABLE `quest_xp` DISABLE KEYS */; +/*!40000 ALTER TABLE `quest_xp` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `rand_prop_points` +-- + +DROP TABLE IF EXISTS `rand_prop_points`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `rand_prop_points` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DamageReplaceStat` int(11) NOT NULL DEFAULT '0', + `Epic1` int(10) unsigned NOT NULL DEFAULT '0', + `Epic2` int(10) unsigned NOT NULL DEFAULT '0', + `Epic3` int(10) unsigned NOT NULL DEFAULT '0', + `Epic4` int(10) unsigned NOT NULL DEFAULT '0', + `Epic5` int(10) unsigned NOT NULL DEFAULT '0', + `Superior1` int(10) unsigned NOT NULL DEFAULT '0', + `Superior2` int(10) unsigned NOT NULL DEFAULT '0', + `Superior3` int(10) unsigned NOT NULL DEFAULT '0', + `Superior4` int(10) unsigned NOT NULL DEFAULT '0', + `Superior5` int(10) unsigned NOT NULL DEFAULT '0', + `Good1` int(10) unsigned NOT NULL DEFAULT '0', + `Good2` int(10) unsigned NOT NULL DEFAULT '0', + `Good3` int(10) unsigned NOT NULL DEFAULT '0', + `Good4` int(10) unsigned NOT NULL DEFAULT '0', + `Good5` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `rand_prop_points` +-- + +LOCK TABLES `rand_prop_points` WRITE; +/*!40000 ALTER TABLE `rand_prop_points` DISABLE KEYS */; +/*!40000 ALTER TABLE `rand_prop_points` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `reward_pack` +-- + +DROP TABLE IF EXISTS `reward_pack`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `reward_pack` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CharTitleID` int(11) NOT NULL DEFAULT '0', + `Money` int(10) unsigned NOT NULL DEFAULT '0', + `ArtifactXPDifficulty` tinyint(4) NOT NULL DEFAULT '0', + `ArtifactXPMultiplier` float NOT NULL DEFAULT '0', + `ArtifactXPCategoryID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TreasurePickerID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `reward_pack` +-- + +LOCK TABLES `reward_pack` WRITE; +/*!40000 ALTER TABLE `reward_pack` DISABLE KEYS */; +/*!40000 ALTER TABLE `reward_pack` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `reward_pack_x_currency_type` +-- + +DROP TABLE IF EXISTS `reward_pack_x_currency_type`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `reward_pack_x_currency_type` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyTypeID` int(10) unsigned NOT NULL DEFAULT '0', + `Quantity` int(11) NOT NULL DEFAULT '0', + `RewardPackID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `reward_pack_x_currency_type` +-- + +LOCK TABLES `reward_pack_x_currency_type` WRITE; +/*!40000 ALTER TABLE `reward_pack_x_currency_type` DISABLE KEYS */; +/*!40000 ALTER TABLE `reward_pack_x_currency_type` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `reward_pack_x_item` +-- + +DROP TABLE IF EXISTS `reward_pack_x_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `reward_pack_x_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `ItemQuantity` int(11) NOT NULL DEFAULT '0', + `RewardPackID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `reward_pack_x_item` +-- + +LOCK TABLES `reward_pack_x_item` WRITE; +/*!40000 ALTER TABLE `reward_pack_x_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `reward_pack_x_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scenario` +-- + +DROP TABLE IF EXISTS `scenario`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scenario` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `AreaTableID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiTextureKitID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scenario` +-- + +LOCK TABLES `scenario` WRITE; +/*!40000 ALTER TABLE `scenario` DISABLE KEYS */; +/*!40000 ALTER TABLE `scenario` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scenario_locale` +-- + +DROP TABLE IF EXISTS `scenario_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scenario_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scenario_locale` +-- + +LOCK TABLES `scenario_locale` WRITE; +/*!40000 ALTER TABLE `scenario_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `scenario_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scenario_step` +-- + +DROP TABLE IF EXISTS `scenario_step`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scenario_step` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Description` text, + `Title` text, + `ScenarioID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Criteriatreeid` int(10) unsigned NOT NULL DEFAULT '0', + `RewardQuestID` int(10) unsigned NOT NULL DEFAULT '0', + `RelatedStep` int(11) NOT NULL DEFAULT '0', + `Supersedes` smallint(5) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VisibilityPlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `WidgetSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scenario_step` +-- + +LOCK TABLES `scenario_step` WRITE; +/*!40000 ALTER TABLE `scenario_step` DISABLE KEYS */; +/*!40000 ALTER TABLE `scenario_step` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scenario_step_locale` +-- + +DROP TABLE IF EXISTS `scenario_step_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scenario_step_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `Title_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scenario_step_locale` +-- + +LOCK TABLES `scenario_step_locale` WRITE; +/*!40000 ALTER TABLE `scenario_step_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `scenario_step_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene_script` +-- + +DROP TABLE IF EXISTS `scene_script`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene_script` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FirstSceneScriptID` smallint(5) unsigned NOT NULL DEFAULT '0', + `NextSceneScriptID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Unknown915` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene_script` +-- + +LOCK TABLES `scene_script` WRITE; +/*!40000 ALTER TABLE `scene_script` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene_script` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene_script_global_text` +-- + +DROP TABLE IF EXISTS `scene_script_global_text`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene_script_global_text` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Script` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene_script_global_text` +-- + +LOCK TABLES `scene_script_global_text` WRITE; +/*!40000 ALTER TABLE `scene_script_global_text` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene_script_global_text` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene_script_package` +-- + +DROP TABLE IF EXISTS `scene_script_package`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene_script_package` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene_script_package` +-- + +LOCK TABLES `scene_script_package` WRITE; +/*!40000 ALTER TABLE `scene_script_package` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene_script_package` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `scene_script_text` +-- + +DROP TABLE IF EXISTS `scene_script_text`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `scene_script_text` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Script` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `scene_script_text` +-- + +LOCK TABLES `scene_script_text` WRITE; +/*!40000 ALTER TABLE `scene_script_text` DISABLE KEYS */; +/*!40000 ALTER TABLE `scene_script_text` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `server_messages` +-- + +DROP TABLE IF EXISTS `server_messages`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `server_messages` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Text` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `server_messages` +-- + +LOCK TABLES `server_messages` WRITE; +/*!40000 ALTER TABLE `server_messages` DISABLE KEYS */; +/*!40000 ALTER TABLE `server_messages` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `server_messages_locale` +-- + +DROP TABLE IF EXISTS `server_messages_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `server_messages_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Text_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `server_messages_locale` +-- + +LOCK TABLES `server_messages_locale` WRITE; +/*!40000 ALTER TABLE `server_messages_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `server_messages_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `skill_line` +-- + +DROP TABLE IF EXISTS `skill_line`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `skill_line` ( + `DisplayName` text, + `AlternateVerb` text, + `Description` text, + `HordeDisplayName` text, + `OverrideSourceInfoDisplayName` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CategoryID` tinyint(4) NOT NULL DEFAULT '0', + `SpellIconFileID` int(11) NOT NULL DEFAULT '0', + `CanLink` tinyint(4) NOT NULL DEFAULT '0', + `ParentSkillLineID` int(10) unsigned NOT NULL DEFAULT '0', + `ParentTierIndex` int(11) NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpellBookSpellID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `skill_line` +-- + +LOCK TABLES `skill_line` WRITE; +/*!40000 ALTER TABLE `skill_line` DISABLE KEYS */; +/*!40000 ALTER TABLE `skill_line` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `skill_line_locale` +-- + +DROP TABLE IF EXISTS `skill_line_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `skill_line_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `DisplayName_lang` text, + `AlternateVerb_lang` text, + `Description_lang` text, + `HordeDisplayName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `skill_line_locale` +-- + +LOCK TABLES `skill_line_locale` WRITE; +/*!40000 ALTER TABLE `skill_line_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `skill_line_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `skill_line_ability` +-- + +DROP TABLE IF EXISTS `skill_line_ability`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `skill_line_ability` ( + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SkillLine` smallint(6) NOT NULL DEFAULT '0', + `Spell` int(11) NOT NULL DEFAULT '0', + `MinSkillLineRank` smallint(6) NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `SupercedesSpell` int(11) NOT NULL DEFAULT '0', + `AcquireMethod` tinyint(4) NOT NULL DEFAULT '0', + `TrivialSkillLineRankHigh` smallint(6) NOT NULL DEFAULT '0', + `TrivialSkillLineRankLow` smallint(6) NOT NULL DEFAULT '0', + `Flags` tinyint(4) NOT NULL DEFAULT '0', + `NumSkillUps` tinyint(4) NOT NULL DEFAULT '0', + `UniqueBit` smallint(6) NOT NULL DEFAULT '0', + `TradeSkillCategoryID` smallint(6) NOT NULL DEFAULT '0', + `SkillupSkillLineID` smallint(6) NOT NULL DEFAULT '0', + `CharacterPoints1` int(11) NOT NULL DEFAULT '0', + `CharacterPoints2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `skill_line_ability` +-- + +LOCK TABLES `skill_line_ability` WRITE; +/*!40000 ALTER TABLE `skill_line_ability` DISABLE KEYS */; +/*!40000 ALTER TABLE `skill_line_ability` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `skill_line_x_trait_tree` +-- + +DROP TABLE IF EXISTS `skill_line_x_trait_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `skill_line_x_trait_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SkillLineID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `skill_line_x_trait_tree` +-- + +LOCK TABLES `skill_line_x_trait_tree` WRITE; +/*!40000 ALTER TABLE `skill_line_x_trait_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `skill_line_x_trait_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `skill_race_class_info` +-- + +DROP TABLE IF EXISTS `skill_race_class_info`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `skill_race_class_info` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RaceMask` bigint(20) NOT NULL DEFAULT '0', + `SkillID` smallint(6) NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `Availability` tinyint(4) NOT NULL DEFAULT '0', + `MinLevel` tinyint(4) NOT NULL DEFAULT '0', + `SkillTierID` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `skill_race_class_info` +-- + +LOCK TABLES `skill_race_class_info` WRITE; +/*!40000 ALTER TABLE `skill_race_class_info` DISABLE KEYS */; +/*!40000 ALTER TABLE `skill_race_class_info` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `sound_kit` +-- + +DROP TABLE IF EXISTS `sound_kit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `sound_kit` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SoundType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VolumeFloat` float NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinDistance` float NOT NULL DEFAULT '0', + `DistanceCutoff` float NOT NULL DEFAULT '0', + `EAXDef` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundKitAdvancedID` int(10) unsigned NOT NULL DEFAULT '0', + `VolumeVariationPlus` float NOT NULL DEFAULT '0', + `VolumeVariationMinus` float NOT NULL DEFAULT '0', + `PitchVariationPlus` float NOT NULL DEFAULT '0', + `PitchVariationMinus` float NOT NULL DEFAULT '0', + `DialogType` tinyint(4) NOT NULL DEFAULT '0', + `PitchAdjust` float NOT NULL DEFAULT '0', + `BusOverwriteID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MaxInstances` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundMixGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `sound_kit` +-- + +LOCK TABLES `sound_kit` WRITE; +/*!40000 ALTER TABLE `sound_kit` DISABLE KEYS */; +/*!40000 ALTER TABLE `sound_kit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `specialization_spells` +-- + +DROP TABLE IF EXISTS `specialization_spells`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `specialization_spells` ( + `Description` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpecID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `OverridesSpellID` int(11) NOT NULL DEFAULT '0', + `DisplayOrder` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `specialization_spells` +-- + +LOCK TABLES `specialization_spells` WRITE; +/*!40000 ALTER TABLE `specialization_spells` DISABLE KEYS */; +/*!40000 ALTER TABLE `specialization_spells` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `specialization_spells_locale` +-- + +DROP TABLE IF EXISTS `specialization_spells_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `specialization_spells_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `specialization_spells_locale` +-- + +LOCK TABLES `specialization_spells_locale` WRITE; +/*!40000 ALTER TABLE `specialization_spells_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `specialization_spells_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spec_set_member` +-- + +DROP TABLE IF EXISTS `spec_set_member`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spec_set_member` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrSpecializationID` int(11) NOT NULL DEFAULT '0', + `SpecSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spec_set_member` +-- + +LOCK TABLES `spec_set_member` WRITE; +/*!40000 ALTER TABLE `spec_set_member` DISABLE KEYS */; +/*!40000 ALTER TABLE `spec_set_member` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_aura_options` +-- + +DROP TABLE IF EXISTS `spell_aura_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_aura_options` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CumulativeAura` int(10) unsigned NOT NULL DEFAULT '0', + `ProcCategoryRecovery` int(11) NOT NULL DEFAULT '0', + `ProcChance` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ProcCharges` int(11) NOT NULL DEFAULT '0', + `SpellProcsPerMinuteID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ProcTypeMask1` int(11) NOT NULL DEFAULT '0', + `ProcTypeMask2` int(11) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_aura_options` +-- + +LOCK TABLES `spell_aura_options` WRITE; +/*!40000 ALTER TABLE `spell_aura_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_aura_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_aura_restrictions` +-- + +DROP TABLE IF EXISTS `spell_aura_restrictions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_aura_restrictions` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CasterAuraState` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TargetAuraState` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExcludeCasterAuraState` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ExcludeTargetAuraState` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CasterAuraSpell` int(11) NOT NULL DEFAULT '0', + `TargetAuraSpell` int(11) NOT NULL DEFAULT '0', + `ExcludeCasterAuraSpell` int(11) NOT NULL DEFAULT '0', + `ExcludeTargetAuraSpell` int(11) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_aura_restrictions` +-- + +LOCK TABLES `spell_aura_restrictions` WRITE; +/*!40000 ALTER TABLE `spell_aura_restrictions` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_aura_restrictions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_cast_times` +-- + +DROP TABLE IF EXISTS `spell_cast_times`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_cast_times` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Base` int(11) NOT NULL DEFAULT '0', + `PerLevel` smallint(6) NOT NULL DEFAULT '0', + `Minimum` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_cast_times` +-- + +LOCK TABLES `spell_cast_times` WRITE; +/*!40000 ALTER TABLE `spell_cast_times` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_cast_times` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_casting_requirements` +-- + +DROP TABLE IF EXISTS `spell_casting_requirements`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_casting_requirements` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `FacingCasterFlags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinFactionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MinReputation` int(11) NOT NULL DEFAULT '0', + `RequiredAreasID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredAuraVision` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RequiresSpellFocus` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_casting_requirements` +-- + +LOCK TABLES `spell_casting_requirements` WRITE; +/*!40000 ALTER TABLE `spell_casting_requirements` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_casting_requirements` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_categories` +-- + +DROP TABLE IF EXISTS `spell_categories`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_categories` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Category` smallint(6) NOT NULL DEFAULT '0', + `DefenseType` tinyint(4) NOT NULL DEFAULT '0', + `DispelType` tinyint(4) NOT NULL DEFAULT '0', + `Mechanic` tinyint(4) NOT NULL DEFAULT '0', + `PreventionType` tinyint(4) NOT NULL DEFAULT '0', + `StartRecoveryCategory` smallint(6) NOT NULL DEFAULT '0', + `ChargeCategory` smallint(6) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_categories` +-- + +LOCK TABLES `spell_categories` WRITE; +/*!40000 ALTER TABLE `spell_categories` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_categories` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_category` +-- + +DROP TABLE IF EXISTS `spell_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_category` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Flags` int(11) NOT NULL DEFAULT '0', + `UsesPerWeek` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxCharges` tinyint(4) NOT NULL DEFAULT '0', + `ChargeRecoveryTime` int(11) NOT NULL DEFAULT '0', + `TypeMask` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_category` +-- + +LOCK TABLES `spell_category` WRITE; +/*!40000 ALTER TABLE `spell_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_category_locale` +-- + +DROP TABLE IF EXISTS `spell_category_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_category_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_category_locale` +-- + +LOCK TABLES `spell_category_locale` WRITE; +/*!40000 ALTER TABLE `spell_category_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_category_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_class_options` +-- + +DROP TABLE IF EXISTS `spell_class_options`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_class_options` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `ModalNextSpell` int(10) unsigned NOT NULL DEFAULT '0', + `SpellClassSet` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellClassMask1` int(11) NOT NULL DEFAULT '0', + `SpellClassMask2` int(11) NOT NULL DEFAULT '0', + `SpellClassMask3` int(11) NOT NULL DEFAULT '0', + `SpellClassMask4` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_class_options` +-- + +LOCK TABLES `spell_class_options` WRITE; +/*!40000 ALTER TABLE `spell_class_options` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_class_options` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_cooldowns` +-- + +DROP TABLE IF EXISTS `spell_cooldowns`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_cooldowns` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CategoryRecoveryTime` int(11) NOT NULL DEFAULT '0', + `RecoveryTime` int(11) NOT NULL DEFAULT '0', + `StartRecoveryTime` int(11) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_cooldowns` +-- + +LOCK TABLES `spell_cooldowns` WRITE; +/*!40000 ALTER TABLE `spell_cooldowns` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_cooldowns` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_duration` +-- + +DROP TABLE IF EXISTS `spell_duration`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_duration` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Duration` int(11) NOT NULL DEFAULT '0', + `DurationPerLevel` int(10) unsigned NOT NULL DEFAULT '0', + `MaxDuration` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_duration` +-- + +LOCK TABLES `spell_duration` WRITE; +/*!40000 ALTER TABLE `spell_duration` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_duration` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_effect` +-- + +DROP TABLE IF EXISTS `spell_effect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_effect` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` int(11) NOT NULL DEFAULT '0', + `EffectIndex` int(11) NOT NULL DEFAULT '0', + `Effect` int(10) unsigned NOT NULL DEFAULT '0', + `EffectAmplitude` float NOT NULL DEFAULT '0', + `EffectAttributes` int(11) NOT NULL DEFAULT '0', + `EffectAura` smallint(6) NOT NULL DEFAULT '0', + `EffectAuraPeriod` int(11) NOT NULL DEFAULT '0', + `EffectBasePoints` int(11) NOT NULL DEFAULT '0', + `EffectBonusCoefficient` float NOT NULL DEFAULT '0', + `EffectChainAmplitude` float NOT NULL DEFAULT '0', + `EffectChainTargets` int(11) NOT NULL DEFAULT '0', + `EffectDieSides` int(11) NOT NULL DEFAULT '0', + `EffectItemType` int(11) NOT NULL DEFAULT '0', + `EffectMechanic` int(11) NOT NULL DEFAULT '0', + `EffectPointsPerResource` float NOT NULL DEFAULT '0', + `EffectPosFacing` float NOT NULL DEFAULT '0', + `EffectRealPointsPerLevel` float NOT NULL DEFAULT '0', + `EffectTriggerSpell` int(11) NOT NULL DEFAULT '0', + `BonusCoefficientFromAP` float NOT NULL DEFAULT '0', + `PvpMultiplier` float NOT NULL DEFAULT '0', + `Coefficient` float NOT NULL DEFAULT '0', + `Variance` float NOT NULL DEFAULT '0', + `ResourceCoefficient` float NOT NULL DEFAULT '0', + `GroupSizeBasePointsCoefficient` float NOT NULL DEFAULT '0', + `EffectMiscValue1` int(11) NOT NULL DEFAULT '0', + `EffectMiscValue2` int(11) NOT NULL DEFAULT '0', + `EffectRadiusIndex1` int(10) unsigned NOT NULL DEFAULT '0', + `EffectRadiusIndex2` int(10) unsigned NOT NULL DEFAULT '0', + `EffectSpellClassMask1` int(11) NOT NULL DEFAULT '0', + `EffectSpellClassMask2` int(11) NOT NULL DEFAULT '0', + `EffectSpellClassMask3` int(11) NOT NULL DEFAULT '0', + `EffectSpellClassMask4` int(11) NOT NULL DEFAULT '0', + `ImplicitTarget1` smallint(6) NOT NULL DEFAULT '0', + `ImplicitTarget2` smallint(6) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_effect` +-- + +LOCK TABLES `spell_effect` WRITE; +/*!40000 ALTER TABLE `spell_effect` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_effect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_equipped_items` +-- + +DROP TABLE IF EXISTS `spell_equipped_items`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_equipped_items` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `EquippedItemClass` tinyint(4) NOT NULL DEFAULT '0', + `EquippedItemInvTypes` int(11) NOT NULL DEFAULT '0', + `EquippedItemSubclass` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_equipped_items` +-- + +LOCK TABLES `spell_equipped_items` WRITE; +/*!40000 ALTER TABLE `spell_equipped_items` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_equipped_items` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_focus_object` +-- + +DROP TABLE IF EXISTS `spell_focus_object`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_focus_object` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_focus_object` +-- + +LOCK TABLES `spell_focus_object` WRITE; +/*!40000 ALTER TABLE `spell_focus_object` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_focus_object` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_focus_object_locale` +-- + +DROP TABLE IF EXISTS `spell_focus_object_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_focus_object_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_focus_object_locale` +-- + +LOCK TABLES `spell_focus_object_locale` WRITE; +/*!40000 ALTER TABLE `spell_focus_object_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_focus_object_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_interrupts` +-- + +DROP TABLE IF EXISTS `spell_interrupts`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_interrupts` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `InterruptFlags` smallint(6) NOT NULL DEFAULT '0', + `AuraInterruptFlags1` int(11) NOT NULL DEFAULT '0', + `AuraInterruptFlags2` int(11) NOT NULL DEFAULT '0', + `ChannelInterruptFlags1` int(11) NOT NULL DEFAULT '0', + `ChannelInterruptFlags2` int(11) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_interrupts` +-- + +LOCK TABLES `spell_interrupts` WRITE; +/*!40000 ALTER TABLE `spell_interrupts` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_interrupts` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_item_enchantment` +-- + +DROP TABLE IF EXISTS `spell_item_enchantment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_item_enchantment` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `HordeName` text, + `EffectArg1` int(10) unsigned NOT NULL DEFAULT '0', + `EffectArg2` int(10) unsigned NOT NULL DEFAULT '0', + `EffectArg3` int(10) unsigned NOT NULL DEFAULT '0', + `EffectScalingPoints1` float NOT NULL DEFAULT '0', + `EffectScalingPoints2` float NOT NULL DEFAULT '0', + `EffectScalingPoints3` float NOT NULL DEFAULT '0', + `GemItemID` int(10) unsigned NOT NULL DEFAULT '0', + `TransmogUnlockConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `TransmogCost` int(10) unsigned NOT NULL DEFAULT '0', + `IconFileDataID` int(10) unsigned NOT NULL DEFAULT '0', + `EffectPointsMin1` smallint(6) NOT NULL DEFAULT '0', + `EffectPointsMin2` smallint(6) NOT NULL DEFAULT '0', + `EffectPointsMin3` smallint(6) NOT NULL DEFAULT '0', + `ItemVisual` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredSkillID` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0', + `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0', + `Charges` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Effect1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Effect2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Effect3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ScalingClass` tinyint(4) NOT NULL DEFAULT '0', + `ScalingClassRestricted` tinyint(4) NOT NULL DEFAULT '0', + `ConditionID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MinLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_item_enchantment` +-- + +LOCK TABLES `spell_item_enchantment` WRITE; +/*!40000 ALTER TABLE `spell_item_enchantment` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_item_enchantment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_item_enchantment_locale` +-- + +DROP TABLE IF EXISTS `spell_item_enchantment_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_item_enchantment_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `HordeName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_item_enchantment_locale` +-- + +LOCK TABLES `spell_item_enchantment_locale` WRITE; +/*!40000 ALTER TABLE `spell_item_enchantment_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_item_enchantment_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_item_enchantment_condition` +-- + +DROP TABLE IF EXISTS `spell_item_enchantment_condition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_item_enchantment_condition` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `LtOperandType1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LtOperandType2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LtOperandType3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LtOperandType4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LtOperandType5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `LtOperand1` int(10) unsigned NOT NULL DEFAULT '0', + `LtOperand2` int(10) unsigned NOT NULL DEFAULT '0', + `LtOperand3` int(10) unsigned NOT NULL DEFAULT '0', + `LtOperand4` int(10) unsigned NOT NULL DEFAULT '0', + `LtOperand5` int(10) unsigned NOT NULL DEFAULT '0', + `Operator1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Operator2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Operator3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Operator4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Operator5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperandType1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperandType2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperandType3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperandType4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperandType5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperand1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperand2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperand3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperand4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RtOperand5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Logic1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Logic2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Logic3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Logic4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Logic5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_item_enchantment_condition` +-- + +LOCK TABLES `spell_item_enchantment_condition` WRITE; +/*!40000 ALTER TABLE `spell_item_enchantment_condition` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_item_enchantment_condition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_keybound_override` +-- + +DROP TABLE IF EXISTS `spell_keybound_override`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_keybound_override` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Function` text, + `Type` tinyint(4) NOT NULL DEFAULT '0', + `Data` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_keybound_override` +-- + +LOCK TABLES `spell_keybound_override` WRITE; +/*!40000 ALTER TABLE `spell_keybound_override` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_keybound_override` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_label` +-- + +DROP TABLE IF EXISTS `spell_label`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_label` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `LabelID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_label` +-- + +LOCK TABLES `spell_label` WRITE; +/*!40000 ALTER TABLE `spell_label` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_label` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_learn_spell` +-- + +DROP TABLE IF EXISTS `spell_learn_spell`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_learn_spell` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `LearnSpellID` int(11) NOT NULL DEFAULT '0', + `OverridesSpellID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_learn_spell` +-- + +LOCK TABLES `spell_learn_spell` WRITE; +/*!40000 ALTER TABLE `spell_learn_spell` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_learn_spell` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_levels` +-- + +DROP TABLE IF EXISTS `spell_levels`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_levels` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BaseLevel` smallint(6) NOT NULL DEFAULT '0', + `MaxLevel` smallint(6) NOT NULL DEFAULT '0', + `SpellLevel` smallint(6) NOT NULL DEFAULT '0', + `MaxPassiveAuraLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_levels` +-- + +LOCK TABLES `spell_levels` WRITE; +/*!40000 ALTER TABLE `spell_levels` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_levels` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_misc` +-- + +DROP TABLE IF EXISTS `spell_misc`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_misc` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Attributes1` int(11) NOT NULL DEFAULT '0', + `Attributes2` int(11) NOT NULL DEFAULT '0', + `Attributes3` int(11) NOT NULL DEFAULT '0', + `Attributes4` int(11) NOT NULL DEFAULT '0', + `Attributes5` int(11) NOT NULL DEFAULT '0', + `Attributes6` int(11) NOT NULL DEFAULT '0', + `Attributes7` int(11) NOT NULL DEFAULT '0', + `Attributes8` int(11) NOT NULL DEFAULT '0', + `Attributes9` int(11) NOT NULL DEFAULT '0', + `Attributes10` int(11) NOT NULL DEFAULT '0', + `Attributes11` int(11) NOT NULL DEFAULT '0', + `Attributes12` int(11) NOT NULL DEFAULT '0', + `Attributes13` int(11) NOT NULL DEFAULT '0', + `Attributes14` int(11) NOT NULL DEFAULT '0', + `Attributes15` int(11) NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `CastingTimeIndex` smallint(5) unsigned NOT NULL DEFAULT '0', + `DurationIndex` smallint(5) unsigned NOT NULL DEFAULT '0', + `RangeIndex` smallint(5) unsigned NOT NULL DEFAULT '0', + `SchoolMask` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Speed` float NOT NULL DEFAULT '0', + `LaunchDelay` float NOT NULL DEFAULT '0', + `MinDuration` float NOT NULL DEFAULT '0', + `SpellIconFileDataID` int(11) NOT NULL DEFAULT '0', + `ActiveIconFileDataID` int(11) NOT NULL DEFAULT '0', + `ContentTuningID` int(11) NOT NULL DEFAULT '0', + `ShowFutureSpellPlayerConditionID` int(11) NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_misc` +-- + +LOCK TABLES `spell_misc` WRITE; +/*!40000 ALTER TABLE `spell_misc` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_misc` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_name` +-- + +DROP TABLE IF EXISTS `spell_name`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_name` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_name` +-- + +LOCK TABLES `spell_name` WRITE; +/*!40000 ALTER TABLE `spell_name` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_name` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_name_locale` +-- + +DROP TABLE IF EXISTS `spell_name_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_name_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_name_locale` +-- + +LOCK TABLES `spell_name_locale` WRITE; +/*!40000 ALTER TABLE `spell_name_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_name_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_power` +-- + +DROP TABLE IF EXISTS `spell_power`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_power` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ManaCost` int(11) NOT NULL DEFAULT '0', + `ManaCostPerLevel` int(11) NOT NULL DEFAULT '0', + `ManaPerSecond` int(11) NOT NULL DEFAULT '0', + `PowerDisplayID` int(10) unsigned NOT NULL DEFAULT '0', + `AltPowerBarID` int(11) NOT NULL DEFAULT '0', + `PowerCostPct` float NOT NULL DEFAULT '0', + `PowerCostMaxPct` float NOT NULL DEFAULT '0', + `PowerPctPerSecond` float NOT NULL DEFAULT '0', + `PowerType` tinyint(4) NOT NULL DEFAULT '0', + `RequiredAuraSpellID` int(11) NOT NULL DEFAULT '0', + `OptionalCost` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_power` +-- + +LOCK TABLES `spell_power` WRITE; +/*!40000 ALTER TABLE `spell_power` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_power` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_power_difficulty` +-- + +DROP TABLE IF EXISTS `spell_power_difficulty`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_power_difficulty` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `OrderIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_power_difficulty` +-- + +LOCK TABLES `spell_power_difficulty` WRITE; +/*!40000 ALTER TABLE `spell_power_difficulty` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_power_difficulty` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_procs_per_minute` +-- + +DROP TABLE IF EXISTS `spell_procs_per_minute`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_procs_per_minute` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `BaseProcRate` float NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_procs_per_minute` +-- + +LOCK TABLES `spell_procs_per_minute` WRITE; +/*!40000 ALTER TABLE `spell_procs_per_minute` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_procs_per_minute` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_procs_per_minute_mod` +-- + +DROP TABLE IF EXISTS `spell_procs_per_minute_mod`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_procs_per_minute_mod` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Param` smallint(6) NOT NULL DEFAULT '0', + `Coeff` float NOT NULL DEFAULT '0', + `SpellProcsPerMinuteID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_procs_per_minute_mod` +-- + +LOCK TABLES `spell_procs_per_minute_mod` WRITE; +/*!40000 ALTER TABLE `spell_procs_per_minute_mod` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_procs_per_minute_mod` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_radius` +-- + +DROP TABLE IF EXISTS `spell_radius`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_radius` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Radius` float NOT NULL DEFAULT '0', + `RadiusPerLevel` float NOT NULL DEFAULT '0', + `RadiusMin` float NOT NULL DEFAULT '0', + `RadiusMax` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_radius` +-- + +LOCK TABLES `spell_radius` WRITE; +/*!40000 ALTER TABLE `spell_radius` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_radius` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_range` +-- + +DROP TABLE IF EXISTS `spell_range`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_range` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DisplayName` text, + `DisplayNameShort` text, + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RangeMin1` float NOT NULL DEFAULT '0', + `RangeMin2` float NOT NULL DEFAULT '0', + `RangeMax1` float NOT NULL DEFAULT '0', + `RangeMax2` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_range` +-- + +LOCK TABLES `spell_range` WRITE; +/*!40000 ALTER TABLE `spell_range` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_range` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_range_locale` +-- + +DROP TABLE IF EXISTS `spell_range_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_range_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `DisplayName_lang` text, + `DisplayNameShort_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_range_locale` +-- + +LOCK TABLES `spell_range_locale` WRITE; +/*!40000 ALTER TABLE `spell_range_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_range_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_reagents` +-- + +DROP TABLE IF EXISTS `spell_reagents`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_reagents` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `Reagent1` int(11) NOT NULL DEFAULT '0', + `Reagent2` int(11) NOT NULL DEFAULT '0', + `Reagent3` int(11) NOT NULL DEFAULT '0', + `Reagent4` int(11) NOT NULL DEFAULT '0', + `Reagent5` int(11) NOT NULL DEFAULT '0', + `Reagent6` int(11) NOT NULL DEFAULT '0', + `Reagent7` int(11) NOT NULL DEFAULT '0', + `Reagent8` int(11) NOT NULL DEFAULT '0', + `ReagentCount1` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount2` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount3` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount4` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount5` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount6` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount7` smallint(6) NOT NULL DEFAULT '0', + `ReagentCount8` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_reagents` +-- + +LOCK TABLES `spell_reagents` WRITE; +/*!40000 ALTER TABLE `spell_reagents` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_reagents` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_reagents_currency` +-- + +DROP TABLE IF EXISTS `spell_reagents_currency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_reagents_currency` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `CurrencyTypesID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CurrencyCount` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_reagents_currency` +-- + +LOCK TABLES `spell_reagents_currency` WRITE; +/*!40000 ALTER TABLE `spell_reagents_currency` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_reagents_currency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_scaling` +-- + +DROP TABLE IF EXISTS `spell_scaling`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_scaling` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `Class` int(11) NOT NULL DEFAULT '0', + `MinScalingLevel` int(10) unsigned NOT NULL DEFAULT '0', + `MaxScalingLevel` int(10) unsigned NOT NULL DEFAULT '0', + `ScalesFromItemLevel` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_scaling` +-- + +LOCK TABLES `spell_scaling` WRITE; +/*!40000 ALTER TABLE `spell_scaling` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_scaling` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_shapeshift` +-- + +DROP TABLE IF EXISTS `spell_shapeshift`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_shapeshift` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `StanceBarOrder` tinyint(4) NOT NULL DEFAULT '0', + `ShapeshiftExclude1` int(11) NOT NULL DEFAULT '0', + `ShapeshiftExclude2` int(11) NOT NULL DEFAULT '0', + `ShapeshiftMask1` int(11) NOT NULL DEFAULT '0', + `ShapeshiftMask2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_shapeshift` +-- + +LOCK TABLES `spell_shapeshift` WRITE; +/*!40000 ALTER TABLE `spell_shapeshift` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_shapeshift` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_shapeshift_form` +-- + +DROP TABLE IF EXISTS `spell_shapeshift_form`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_shapeshift_form` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `CreatureType` tinyint(4) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `AttackIconFileID` int(11) NOT NULL DEFAULT '0', + `BonusActionBar` tinyint(4) NOT NULL DEFAULT '0', + `CombatRoundTime` smallint(6) NOT NULL DEFAULT '0', + `DamageVariance` float NOT NULL DEFAULT '0', + `MountTypeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CreatureDisplayID1` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureDisplayID2` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureDisplayID3` int(10) unsigned NOT NULL DEFAULT '0', + `CreatureDisplayID4` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID1` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID2` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID3` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID4` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID5` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID6` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID7` int(10) unsigned NOT NULL DEFAULT '0', + `PresetSpellID8` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_shapeshift_form` +-- + +LOCK TABLES `spell_shapeshift_form` WRITE; +/*!40000 ALTER TABLE `spell_shapeshift_form` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_shapeshift_form` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_shapeshift_form_locale` +-- + +DROP TABLE IF EXISTS `spell_shapeshift_form_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_shapeshift_form_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_shapeshift_form_locale` +-- + +LOCK TABLES `spell_shapeshift_form_locale` WRITE; +/*!40000 ALTER TABLE `spell_shapeshift_form_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_shapeshift_form_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_target_restrictions` +-- + +DROP TABLE IF EXISTS `spell_target_restrictions`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_target_restrictions` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ConeDegrees` float NOT NULL DEFAULT '0', + `MaxTargets` tinyint(3) unsigned NOT NULL DEFAULT '0', + `MaxTargetLevel` int(10) unsigned NOT NULL DEFAULT '0', + `TargetCreatureType` smallint(6) NOT NULL DEFAULT '0', + `Targets` int(11) NOT NULL DEFAULT '0', + `Width` float NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_target_restrictions` +-- + +LOCK TABLES `spell_target_restrictions` WRITE; +/*!40000 ALTER TABLE `spell_target_restrictions` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_target_restrictions` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_totems` +-- + +DROP TABLE IF EXISTS `spell_totems`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_totems` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `RequiredTotemCategoryID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `RequiredTotemCategoryID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `Totem1` int(11) NOT NULL DEFAULT '0', + `Totem2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_totems` +-- + +LOCK TABLES `spell_totems` WRITE; +/*!40000 ALTER TABLE `spell_totems` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_totems` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_visual` +-- + +DROP TABLE IF EXISTS `spell_visual`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_visual` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `MissileCastOffset1` float NOT NULL DEFAULT '0', + `MissileCastOffset2` float NOT NULL DEFAULT '0', + `MissileCastOffset3` float NOT NULL DEFAULT '0', + `MissileImpactOffset1` float NOT NULL DEFAULT '0', + `MissileImpactOffset2` float NOT NULL DEFAULT '0', + `MissileImpactOffset3` float NOT NULL DEFAULT '0', + `AnimEventSoundID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `MissileAttachment` tinyint(4) NOT NULL DEFAULT '0', + `MissileDestinationAttachment` tinyint(4) NOT NULL DEFAULT '0', + `MissileCastPositionerID` int(10) unsigned NOT NULL DEFAULT '0', + `MissileImpactPositionerID` int(10) unsigned NOT NULL DEFAULT '0', + `MissileTargetingKit` int(11) NOT NULL DEFAULT '0', + `HostileSpellVisualID` int(10) unsigned NOT NULL DEFAULT '0', + `CasterSpellVisualID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualMissileSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `DamageNumberDelay` smallint(5) unsigned NOT NULL DEFAULT '0', + `LowViolenceSpellVisualID` int(10) unsigned NOT NULL DEFAULT '0', + `RaidSpellVisualMissileSetID` int(10) unsigned NOT NULL DEFAULT '0', + `ReducedUnexpectedCameraMovementSpellVisualID` int(11) NOT NULL DEFAULT '0', + `AreaModel` smallint(5) unsigned NOT NULL DEFAULT '0', + `HasMissile` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_visual` +-- + +LOCK TABLES `spell_visual` WRITE; +/*!40000 ALTER TABLE `spell_visual` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_visual` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_visual_effect_name` +-- + +DROP TABLE IF EXISTS `spell_visual_effect_name`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_visual_effect_name` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ModelFileDataID` int(11) NOT NULL DEFAULT '0', + `BaseMissileSpeed` float NOT NULL DEFAULT '0', + `Scale` float NOT NULL DEFAULT '0', + `MinAllowedScale` float NOT NULL DEFAULT '0', + `MaxAllowedScale` float NOT NULL DEFAULT '0', + `Alpha` float NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `TextureFileDataID` int(11) NOT NULL DEFAULT '0', + `EffectRadius` float NOT NULL DEFAULT '0', + `Type` int(10) unsigned NOT NULL DEFAULT '0', + `GenericID` int(11) NOT NULL DEFAULT '0', + `RibbonQualityID` int(10) unsigned NOT NULL DEFAULT '0', + `DissolveEffectID` int(11) NOT NULL DEFAULT '0', + `ModelPosition` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_visual_effect_name` +-- + +LOCK TABLES `spell_visual_effect_name` WRITE; +/*!40000 ALTER TABLE `spell_visual_effect_name` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_visual_effect_name` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_visual_missile` +-- + +DROP TABLE IF EXISTS `spell_visual_missile`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_visual_missile` ( + `CastOffset1` float NOT NULL DEFAULT '0', + `CastOffset2` float NOT NULL DEFAULT '0', + `CastOffset3` float NOT NULL DEFAULT '0', + `ImpactOffset1` float NOT NULL DEFAULT '0', + `ImpactOffset2` float NOT NULL DEFAULT '0', + `ImpactOffset3` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualEffectNameID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SoundEntriesID` int(10) unsigned NOT NULL DEFAULT '0', + `Attachment` tinyint(4) NOT NULL DEFAULT '0', + `DestinationAttachment` tinyint(4) NOT NULL DEFAULT '0', + `CastPositionerID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ImpactPositionerID` smallint(5) unsigned NOT NULL DEFAULT '0', + `FollowGroundHeight` int(11) NOT NULL DEFAULT '0', + `FollowGroundDropSpeed` int(10) unsigned NOT NULL DEFAULT '0', + `FollowGroundApproach` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `SpellMissileMotionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `AnimKitID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellVisualMissileSetID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_visual_missile` +-- + +LOCK TABLES `spell_visual_missile` WRITE; +/*!40000 ALTER TABLE `spell_visual_missile` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_visual_missile` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_visual_kit` +-- + +DROP TABLE IF EXISTS `spell_visual_kit`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_visual_kit` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FallbackSpellVisualKitId` int(10) unsigned NOT NULL DEFAULT '0', + `DelayMin` smallint(5) unsigned NOT NULL DEFAULT '0', + `DelayMax` smallint(5) unsigned NOT NULL DEFAULT '0', + `FallbackPriority` float NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_visual_kit` +-- + +LOCK TABLES `spell_visual_kit` WRITE; +/*!40000 ALTER TABLE `spell_visual_kit` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_visual_kit` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `spell_x_spell_visual` +-- + +DROP TABLE IF EXISTS `spell_x_spell_visual`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `spell_x_spell_visual` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `DifficultyID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpellVisualID` int(10) unsigned NOT NULL DEFAULT '0', + `Probability` float NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Priority` int(11) NOT NULL DEFAULT '0', + `SpellIconFileID` int(11) NOT NULL DEFAULT '0', + `ActiveIconFileID` int(11) NOT NULL DEFAULT '0', + `ViewerUnitConditionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ViewerPlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `CasterUnitConditionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `CasterPlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `spell_x_spell_visual` +-- + +LOCK TABLES `spell_x_spell_visual` WRITE; +/*!40000 ALTER TABLE `spell_x_spell_visual` DISABLE KEYS */; +/*!40000 ALTER TABLE `spell_x_spell_visual` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `summon_properties` +-- + +DROP TABLE IF EXISTS `summon_properties`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `summon_properties` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Control` int(11) NOT NULL DEFAULT '0', + `Faction` int(11) NOT NULL DEFAULT '0', + `Title` int(11) NOT NULL DEFAULT '0', + `Slot` int(11) NOT NULL DEFAULT '0', + `Flags1` int(11) NOT NULL DEFAULT '0', + `Flags2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `summon_properties` +-- + +LOCK TABLES `summon_properties` WRITE; +/*!40000 ALTER TABLE `summon_properties` DISABLE KEYS */; +/*!40000 ALTER TABLE `summon_properties` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `tact_key` +-- + +DROP TABLE IF EXISTS `tact_key`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `tact_key` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Key1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key9` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key10` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key11` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key12` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key13` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key14` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key15` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Key16` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `tact_key` +-- + +LOCK TABLES `tact_key` WRITE; +/*!40000 ALTER TABLE `tact_key` DISABLE KEYS */; +/*!40000 ALTER TABLE `tact_key` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `talent` +-- + +DROP TABLE IF EXISTS `talent`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `talent` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Description` text, + `TierID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `ColumnIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TabID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ClassID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SpecID` smallint(5) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `OverridesSpellID` int(11) NOT NULL DEFAULT '0', + `RequiredSpellID` int(11) NOT NULL DEFAULT '0', + `CategoryMask1` int(11) NOT NULL DEFAULT '0', + `CategoryMask2` int(11) NOT NULL DEFAULT '0', + `SpellRank1` int(11) NOT NULL DEFAULT '0', + `SpellRank2` int(11) NOT NULL DEFAULT '0', + `SpellRank3` int(11) NOT NULL DEFAULT '0', + `SpellRank4` int(11) NOT NULL DEFAULT '0', + `SpellRank5` int(11) NOT NULL DEFAULT '0', + `SpellRank6` int(11) NOT NULL DEFAULT '0', + `SpellRank7` int(11) NOT NULL DEFAULT '0', + `SpellRank8` int(11) NOT NULL DEFAULT '0', + `SpellRank9` int(11) NOT NULL DEFAULT '0', + `PrereqTalent1` int(11) NOT NULL DEFAULT '0', + `PrereqTalent2` int(11) NOT NULL DEFAULT '0', + `PrereqTalent3` int(11) NOT NULL DEFAULT '0', + `PrereqRank1` int(11) NOT NULL DEFAULT '0', + `PrereqRank2` int(11) NOT NULL DEFAULT '0', + `PrereqRank3` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `talent` +-- + +LOCK TABLES `talent` WRITE; +/*!40000 ALTER TABLE `talent` DISABLE KEYS */; +/*!40000 ALTER TABLE `talent` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `talent_locale` +-- + +DROP TABLE IF EXISTS `talent_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `talent_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Description_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `talent_locale` +-- + +LOCK TABLES `talent_locale` WRITE; +/*!40000 ALTER TABLE `talent_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `talent_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `taxi_nodes` +-- + +DROP TABLE IF EXISTS `taxi_nodes`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `taxi_nodes` ( + `Name` text, + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PosZ` float NOT NULL DEFAULT '0', + `MapOffsetX` float NOT NULL DEFAULT '0', + `MapOffsetY` float NOT NULL DEFAULT '0', + `FlightMapOffsetX` float NOT NULL DEFAULT '0', + `FlightMapOffsetY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ContinentID` int(10) unsigned NOT NULL DEFAULT '0', + `ConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `CharacterBitNumber` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `UiTextureKitID` int(11) NOT NULL DEFAULT '0', + `Facing` float NOT NULL DEFAULT '0', + `SpecialIconConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `VisibilityConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `MountCreatureID1` int(11) NOT NULL DEFAULT '0', + `MountCreatureID2` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `taxi_nodes` +-- + +LOCK TABLES `taxi_nodes` WRITE; +/*!40000 ALTER TABLE `taxi_nodes` DISABLE KEYS */; +/*!40000 ALTER TABLE `taxi_nodes` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `taxi_nodes_locale` +-- + +DROP TABLE IF EXISTS `taxi_nodes_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `taxi_nodes_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `taxi_nodes_locale` +-- + +LOCK TABLES `taxi_nodes_locale` WRITE; +/*!40000 ALTER TABLE `taxi_nodes_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `taxi_nodes_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `taxi_path` +-- + +DROP TABLE IF EXISTS `taxi_path`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `taxi_path` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `FromTaxiNode` smallint(5) unsigned NOT NULL DEFAULT '0', + `ToTaxiNode` smallint(5) unsigned NOT NULL DEFAULT '0', + `Cost` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `taxi_path` +-- + +LOCK TABLES `taxi_path` WRITE; +/*!40000 ALTER TABLE `taxi_path` DISABLE KEYS */; +/*!40000 ALTER TABLE `taxi_path` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `taxi_path_node` +-- + +DROP TABLE IF EXISTS `taxi_path_node`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `taxi_path_node` ( + `LocX` float NOT NULL DEFAULT '0', + `LocY` float NOT NULL DEFAULT '0', + `LocZ` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PathID` smallint(5) unsigned NOT NULL DEFAULT '0', + `NodeIndex` int(11) NOT NULL DEFAULT '0', + `ContinentID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `Delay` int(10) unsigned NOT NULL DEFAULT '0', + `ArrivalEventID` int(10) unsigned NOT NULL DEFAULT '0', + `DepartureEventID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `taxi_path_node` +-- + +LOCK TABLES `taxi_path_node` WRITE; +/*!40000 ALTER TABLE `taxi_path_node` DISABLE KEYS */; +/*!40000 ALTER TABLE `taxi_path_node` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `totem_category` +-- + +DROP TABLE IF EXISTS `totem_category`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `totem_category` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `TotemCategoryType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TotemCategoryMask` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `totem_category` +-- + +LOCK TABLES `totem_category` WRITE; +/*!40000 ALTER TABLE `totem_category` DISABLE KEYS */; +/*!40000 ALTER TABLE `totem_category` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `totem_category_locale` +-- + +DROP TABLE IF EXISTS `totem_category_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `totem_category_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `totem_category_locale` +-- + +LOCK TABLES `totem_category_locale` WRITE; +/*!40000 ALTER TABLE `totem_category_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `totem_category_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `toy` +-- + +DROP TABLE IF EXISTS `toy`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `toy` ( + `SourceText` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemID` int(11) NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SourceTypeEnum` tinyint(4) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `toy` +-- + +LOCK TABLES `toy` WRITE; +/*!40000 ALTER TABLE `toy` DISABLE KEYS */; +/*!40000 ALTER TABLE `toy` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `toy_locale` +-- + +DROP TABLE IF EXISTS `toy_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `toy_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `SourceText_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `toy_locale` +-- + +LOCK TABLES `toy_locale` WRITE; +/*!40000 ALTER TABLE `toy_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `toy_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_holiday` +-- + +DROP TABLE IF EXISTS `transmog_holiday`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_holiday` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `RequiredTransmogHoliday` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_holiday` +-- + +LOCK TABLES `transmog_holiday` WRITE; +/*!40000 ALTER TABLE `transmog_holiday` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_holiday` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_cond` +-- + +DROP TABLE IF EXISTS `trait_cond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_cond` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `CondType` int(11) NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `GrantedRanks` int(11) NOT NULL DEFAULT '0', + `QuestID` int(11) NOT NULL DEFAULT '0', + `AchievementID` int(11) NOT NULL DEFAULT '0', + `SpecSetID` int(11) NOT NULL DEFAULT '0', + `TraitNodeGroupID` int(11) NOT NULL DEFAULT '0', + `TraitNodeID` int(11) NOT NULL DEFAULT '0', + `TraitCurrencyID` int(11) NOT NULL DEFAULT '0', + `SpentAmountRequired` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `RequiredLevel` int(11) NOT NULL DEFAULT '0', + `FreeSharedStringID` int(11) NOT NULL DEFAULT '0', + `SpendMoreSharedStringID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_cond` +-- + +LOCK TABLES `trait_cond` WRITE; +/*!40000 ALTER TABLE `trait_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_cond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_cost` +-- + +DROP TABLE IF EXISTS `trait_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_cost` ( + `InternalName` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Amount` int(11) NOT NULL DEFAULT '0', + `TraitCurrencyID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_cost` +-- + +LOCK TABLES `trait_cost` WRITE; +/*!40000 ALTER TABLE `trait_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_currency` +-- + +DROP TABLE IF EXISTS `trait_currency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_currency` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '0', + `CurrencyTypesID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `Icon` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_currency` +-- + +LOCK TABLES `trait_currency` WRITE; +/*!40000 ALTER TABLE `trait_currency` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_currency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_currency_source` +-- + +DROP TABLE IF EXISTS `trait_currency_source`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_currency_source` ( + `Requirement` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCurrencyID` int(10) unsigned NOT NULL DEFAULT '0', + `Amount` int(11) NOT NULL DEFAULT '0', + `QuestID` int(11) NOT NULL DEFAULT '0', + `AchievementID` int(11) NOT NULL DEFAULT '0', + `PlayerLevel` int(11) NOT NULL DEFAULT '0', + `TraitNodeEntryID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_currency_source` +-- + +LOCK TABLES `trait_currency_source` WRITE; +/*!40000 ALTER TABLE `trait_currency_source` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_currency_source` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_currency_source_locale` +-- + +DROP TABLE IF EXISTS `trait_currency_source_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_currency_source_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Requirement_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_currency_source_locale` +-- + +LOCK TABLES `trait_currency_source_locale` WRITE; +/*!40000 ALTER TABLE `trait_currency_source_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_currency_source_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_definition` +-- + +DROP TABLE IF EXISTS `trait_definition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_definition` ( + `OverrideName` text, + `OverrideSubtext` text, + `OverrideDescription` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `SpellID` int(11) NOT NULL DEFAULT '0', + `OverrideIcon` int(11) NOT NULL DEFAULT '0', + `OverridesSpellID` int(11) NOT NULL DEFAULT '0', + `VisibleSpellID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_definition` +-- + +LOCK TABLES `trait_definition` WRITE; +/*!40000 ALTER TABLE `trait_definition` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_definition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_definition_locale` +-- + +DROP TABLE IF EXISTS `trait_definition_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_definition_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `OverrideName_lang` text, + `OverrideSubtext_lang` text, + `OverrideDescription_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_definition_locale` +-- + +LOCK TABLES `trait_definition_locale` WRITE; +/*!40000 ALTER TABLE `trait_definition_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_definition_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_definition_effect_points` +-- + +DROP TABLE IF EXISTS `trait_definition_effect_points`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_definition_effect_points` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitDefinitionID` int(10) unsigned NOT NULL DEFAULT '0', + `EffectIndex` int(11) NOT NULL DEFAULT '0', + `OperationType` int(11) NOT NULL DEFAULT '0', + `CurveID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_definition_effect_points` +-- + +LOCK TABLES `trait_definition_effect_points` WRITE; +/*!40000 ALTER TABLE `trait_definition_effect_points` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_definition_effect_points` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_edge` +-- + +DROP TABLE IF EXISTS `trait_edge`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_edge` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `VisualStyle` int(11) NOT NULL DEFAULT '0', + `LeftTraitNodeID` int(10) unsigned NOT NULL DEFAULT '0', + `RightTraitNodeID` int(11) NOT NULL DEFAULT '0', + `Type` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_edge` +-- + +LOCK TABLES `trait_edge` WRITE; +/*!40000 ALTER TABLE `trait_edge` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_edge` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node` +-- + +DROP TABLE IF EXISTS `trait_node`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `PosX` int(11) NOT NULL DEFAULT '0', + `PosY` int(11) NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node` +-- + +LOCK TABLES `trait_node` WRITE; +/*!40000 ALTER TABLE `trait_node` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_entry` +-- + +DROP TABLE IF EXISTS `trait_node_entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_entry` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitDefinitionID` int(11) NOT NULL DEFAULT '0', + `MaxRanks` int(11) NOT NULL DEFAULT '0', + `NodeEntryType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_entry` +-- + +LOCK TABLES `trait_node_entry` WRITE; +/*!40000 ALTER TABLE `trait_node_entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_entry_x_trait_cond` +-- + +DROP TABLE IF EXISTS `trait_node_entry_x_trait_cond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_entry_x_trait_cond` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCondID` int(11) NOT NULL DEFAULT '0', + `TraitNodeEntryID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_entry_x_trait_cond` +-- + +LOCK TABLES `trait_node_entry_x_trait_cond` WRITE; +/*!40000 ALTER TABLE `trait_node_entry_x_trait_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_entry_x_trait_cond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_entry_x_trait_cost` +-- + +DROP TABLE IF EXISTS `trait_node_entry_x_trait_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_entry_x_trait_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeEntryID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCostID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_entry_x_trait_cost` +-- + +LOCK TABLES `trait_node_entry_x_trait_cost` WRITE; +/*!40000 ALTER TABLE `trait_node_entry_x_trait_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_entry_x_trait_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_group` +-- + +DROP TABLE IF EXISTS `trait_node_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_group` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_group` +-- + +LOCK TABLES `trait_node_group` WRITE; +/*!40000 ALTER TABLE `trait_node_group` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_group_x_trait_cond` +-- + +DROP TABLE IF EXISTS `trait_node_group_x_trait_cond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_group_x_trait_cond` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCondID` int(11) NOT NULL DEFAULT '0', + `TraitNodeGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_group_x_trait_cond` +-- + +LOCK TABLES `trait_node_group_x_trait_cond` WRITE; +/*!40000 ALTER TABLE `trait_node_group_x_trait_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_group_x_trait_cond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_group_x_trait_cost` +-- + +DROP TABLE IF EXISTS `trait_node_group_x_trait_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_group_x_trait_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCostID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_group_x_trait_cost` +-- + +LOCK TABLES `trait_node_group_x_trait_cost` WRITE; +/*!40000 ALTER TABLE `trait_node_group_x_trait_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_group_x_trait_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_group_x_trait_node` +-- + +DROP TABLE IF EXISTS `trait_node_group_x_trait_node`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_group_x_trait_node` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeID` int(11) NOT NULL DEFAULT '0', + `Index` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_group_x_trait_node` +-- + +LOCK TABLES `trait_node_group_x_trait_node` WRITE; +/*!40000 ALTER TABLE `trait_node_group_x_trait_node` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_group_x_trait_node` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_x_trait_cond` +-- + +DROP TABLE IF EXISTS `trait_node_x_trait_cond`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_x_trait_cond` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCondID` int(11) NOT NULL DEFAULT '0', + `TraitNodeID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_x_trait_cond` +-- + +LOCK TABLES `trait_node_x_trait_cond` WRITE; +/*!40000 ALTER TABLE `trait_node_x_trait_cond` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_x_trait_cond` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_x_trait_cost` +-- + +DROP TABLE IF EXISTS `trait_node_x_trait_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_x_trait_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCostID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_x_trait_cost` +-- + +LOCK TABLES `trait_node_x_trait_cost` WRITE; +/*!40000 ALTER TABLE `trait_node_x_trait_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_x_trait_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_node_x_trait_node_entry` +-- + +DROP TABLE IF EXISTS `trait_node_x_trait_node_entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_node_x_trait_node_entry` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitNodeEntryID` int(11) NOT NULL DEFAULT '0', + `Index` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_node_x_trait_node_entry` +-- + +LOCK TABLES `trait_node_x_trait_node_entry` WRITE; +/*!40000 ALTER TABLE `trait_node_x_trait_node_entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_node_x_trait_node_entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_tree` +-- + +DROP TABLE IF EXISTS `trait_tree`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_tree` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitSystemID` int(10) unsigned NOT NULL DEFAULT '0', + `Unused1000_1` int(11) NOT NULL DEFAULT '0', + `FirstTraitNodeID` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `Unused1000_2` float NOT NULL DEFAULT '0', + `Unused1000_3` float NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_tree` +-- + +LOCK TABLES `trait_tree` WRITE; +/*!40000 ALTER TABLE `trait_tree` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_tree` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_tree_loadout` +-- + +DROP TABLE IF EXISTS `trait_tree_loadout`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_tree_loadout` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `ChrSpecializationID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_tree_loadout` +-- + +LOCK TABLES `trait_tree_loadout` WRITE; +/*!40000 ALTER TABLE `trait_tree_loadout` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_tree_loadout` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_tree_loadout_entry` +-- + +DROP TABLE IF EXISTS `trait_tree_loadout_entry`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_tree_loadout_entry` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeLoadoutID` int(10) unsigned NOT NULL DEFAULT '0', + `SelectedTraitNodeID` int(11) NOT NULL DEFAULT '0', + `SelectedTraitNodeEntryID` int(11) NOT NULL DEFAULT '0', + `NumPoints` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_tree_loadout_entry` +-- + +LOCK TABLES `trait_tree_loadout_entry` WRITE; +/*!40000 ALTER TABLE `trait_tree_loadout_entry` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_tree_loadout_entry` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_tree_x_trait_cost` +-- + +DROP TABLE IF EXISTS `trait_tree_x_trait_cost`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_tree_x_trait_cost` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCostID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_tree_x_trait_cost` +-- + +LOCK TABLES `trait_tree_x_trait_cost` WRITE; +/*!40000 ALTER TABLE `trait_tree_x_trait_cost` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_tree_x_trait_cost` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `trait_tree_x_trait_currency` +-- + +DROP TABLE IF EXISTS `trait_tree_x_trait_currency`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `trait_tree_x_trait_currency` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Index` int(11) NOT NULL DEFAULT '0', + `TraitTreeID` int(10) unsigned NOT NULL DEFAULT '0', + `TraitCurrencyID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `trait_tree_x_trait_currency` +-- + +LOCK TABLES `trait_tree_x_trait_currency` WRITE; +/*!40000 ALTER TABLE `trait_tree_x_trait_currency` DISABLE KEYS */; +/*!40000 ALTER TABLE `trait_tree_x_trait_currency` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_set` +-- + +DROP TABLE IF EXISTS `transmog_set`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_set` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ClassMask` int(11) NOT NULL DEFAULT '0', + `TrackingQuestID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `TransmogSetGroupID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemNameDescriptionID` int(11) NOT NULL DEFAULT '0', + `ParentTransmogSetID` smallint(5) unsigned NOT NULL DEFAULT '0', + `ExpansionID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `UiOrder` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_set` +-- + +LOCK TABLES `transmog_set` WRITE; +/*!40000 ALTER TABLE `transmog_set` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_set` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_set_locale` +-- + +DROP TABLE IF EXISTS `transmog_set_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_set_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_set_locale` +-- + +LOCK TABLES `transmog_set_locale` WRITE; +/*!40000 ALTER TABLE `transmog_set_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_set_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_set_group` +-- + +DROP TABLE IF EXISTS `transmog_set_group`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_set_group` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_set_group` +-- + +LOCK TABLES `transmog_set_group` WRITE; +/*!40000 ALTER TABLE `transmog_set_group` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_set_group` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_set_group_locale` +-- + +DROP TABLE IF EXISTS `transmog_set_group_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_set_group_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_set_group_locale` +-- + +LOCK TABLES `transmog_set_group_locale` WRITE; +/*!40000 ALTER TABLE `transmog_set_group_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_set_group_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transmog_set_item` +-- + +DROP TABLE IF EXISTS `transmog_set_item`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transmog_set_item` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `TransmogSetID` int(10) unsigned NOT NULL DEFAULT '0', + `ItemModifiedAppearanceID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transmog_set_item` +-- + +LOCK TABLES `transmog_set_item` WRITE; +/*!40000 ALTER TABLE `transmog_set_item` DISABLE KEYS */; +/*!40000 ALTER TABLE `transmog_set_item` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transport_animation` +-- + +DROP TABLE IF EXISTS `transport_animation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transport_animation` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PosX` float NOT NULL DEFAULT '0', + `PosY` float NOT NULL DEFAULT '0', + `PosZ` float NOT NULL DEFAULT '0', + `SequenceID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TimeIndex` int(10) unsigned NOT NULL DEFAULT '0', + `TransportID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transport_animation` +-- + +LOCK TABLES `transport_animation` WRITE; +/*!40000 ALTER TABLE `transport_animation` DISABLE KEYS */; +/*!40000 ALTER TABLE `transport_animation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `transport_rotation` +-- + +DROP TABLE IF EXISTS `transport_rotation`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `transport_rotation` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Rot1` float NOT NULL DEFAULT '0', + `Rot2` float NOT NULL DEFAULT '0', + `Rot3` float NOT NULL DEFAULT '0', + `Rot4` float NOT NULL DEFAULT '0', + `TimeIndex` int(10) unsigned NOT NULL DEFAULT '0', + `GameObjectsID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `transport_rotation` +-- + +LOCK TABLES `transport_rotation` WRITE; +/*!40000 ALTER TABLE `transport_rotation` DISABLE KEYS */; +/*!40000 ALTER TABLE `transport_rotation` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ui_map` +-- + +DROP TABLE IF EXISTS `ui_map`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ui_map` ( + `Name` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ParentUiMapID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `System` tinyint(4) NOT NULL DEFAULT '0', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '0', + `BountySetID` int(11) NOT NULL DEFAULT '0', + `BountyDisplayLocation` int(10) unsigned NOT NULL DEFAULT '0', + `VisibilityPlayerConditionID2` int(11) NOT NULL DEFAULT '0', + `VisibilityPlayerConditionID` int(11) NOT NULL DEFAULT '0', + `HelpTextPosition` tinyint(4) NOT NULL DEFAULT '0', + `BkgAtlasID` int(11) NOT NULL DEFAULT '0', + `AlternateUiMapGroup` int(10) unsigned NOT NULL DEFAULT '0', + `ContentTuningID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ui_map` +-- + +LOCK TABLES `ui_map` WRITE; +/*!40000 ALTER TABLE `ui_map` DISABLE KEYS */; +/*!40000 ALTER TABLE `ui_map` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ui_map_locale` +-- + +DROP TABLE IF EXISTS `ui_map_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ui_map_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ui_map_locale` +-- + +LOCK TABLES `ui_map_locale` WRITE; +/*!40000 ALTER TABLE `ui_map_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `ui_map_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ui_map_assignment` +-- + +DROP TABLE IF EXISTS `ui_map_assignment`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ui_map_assignment` ( + `UiMinX` float NOT NULL DEFAULT '0', + `UiMinY` float NOT NULL DEFAULT '0', + `UiMaxX` float NOT NULL DEFAULT '0', + `UiMaxY` float NOT NULL DEFAULT '0', + `Region1X` float NOT NULL DEFAULT '0', + `Region1Y` float NOT NULL DEFAULT '0', + `Region1Z` float NOT NULL DEFAULT '0', + `Region2X` float NOT NULL DEFAULT '0', + `Region2Y` float NOT NULL DEFAULT '0', + `Region2Z` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UiMapID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `MapID` int(11) NOT NULL DEFAULT '0', + `AreaID` int(11) NOT NULL DEFAULT '0', + `WmoDoodadPlacementID` int(11) NOT NULL DEFAULT '0', + `WmoGroupID` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ui_map_assignment` +-- + +LOCK TABLES `ui_map_assignment` WRITE; +/*!40000 ALTER TABLE `ui_map_assignment` DISABLE KEYS */; +/*!40000 ALTER TABLE `ui_map_assignment` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ui_map_link` +-- + +DROP TABLE IF EXISTS `ui_map_link`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ui_map_link` ( + `UiMinX` float NOT NULL DEFAULT '0', + `UiMinY` float NOT NULL DEFAULT '0', + `UiMaxX` float NOT NULL DEFAULT '0', + `UiMaxY` float NOT NULL DEFAULT '0', + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `ParentUiMapID` int(11) NOT NULL DEFAULT '0', + `OrderIndex` int(11) NOT NULL DEFAULT '0', + `ChildUiMapID` int(11) NOT NULL DEFAULT '0', + `OverrideHighlightFileDataID` int(11) NOT NULL DEFAULT '0', + `OverrideHighlightAtlasID` int(11) NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ui_map_link` +-- + +LOCK TABLES `ui_map_link` WRITE; +/*!40000 ALTER TABLE `ui_map_link` DISABLE KEYS */; +/*!40000 ALTER TABLE `ui_map_link` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `ui_map_x_map_art` +-- + +DROP TABLE IF EXISTS `ui_map_x_map_art`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `ui_map_x_map_art` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `PhaseID` int(11) NOT NULL DEFAULT '0', + `UiMapArtID` int(11) NOT NULL DEFAULT '0', + `UiMapID` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `ui_map_x_map_art` +-- + +LOCK TABLES `ui_map_x_map_art` WRITE; +/*!40000 ALTER TABLE `ui_map_x_map_art` DISABLE KEYS */; +/*!40000 ALTER TABLE `ui_map_x_map_art` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unit_condition` +-- + +DROP TABLE IF EXISTS `unit_condition`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `unit_condition` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable1` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable2` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable3` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable4` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable5` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable6` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable7` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Variable8` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Op1` tinyint(4) NOT NULL DEFAULT '0', + `Op2` tinyint(4) NOT NULL DEFAULT '0', + `Op3` tinyint(4) NOT NULL DEFAULT '0', + `Op4` tinyint(4) NOT NULL DEFAULT '0', + `Op5` tinyint(4) NOT NULL DEFAULT '0', + `Op6` tinyint(4) NOT NULL DEFAULT '0', + `Op7` tinyint(4) NOT NULL DEFAULT '0', + `Op8` tinyint(4) NOT NULL DEFAULT '0', + `Value1` int(11) NOT NULL DEFAULT '0', + `Value2` int(11) NOT NULL DEFAULT '0', + `Value3` int(11) NOT NULL DEFAULT '0', + `Value4` int(11) NOT NULL DEFAULT '0', + `Value5` int(11) NOT NULL DEFAULT '0', + `Value6` int(11) NOT NULL DEFAULT '0', + `Value7` int(11) NOT NULL DEFAULT '0', + `Value8` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unit_condition` +-- + +LOCK TABLES `unit_condition` WRITE; +/*!40000 ALTER TABLE `unit_condition` DISABLE KEYS */; +/*!40000 ALTER TABLE `unit_condition` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unit_power_bar` +-- + +DROP TABLE IF EXISTS `unit_power_bar`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `unit_power_bar` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Cost` text, + `OutOfError` text, + `ToolTip` text, + `MinPower` int(10) unsigned NOT NULL DEFAULT '0', + `MaxPower` int(10) unsigned NOT NULL DEFAULT '0', + `StartPower` smallint(5) unsigned NOT NULL DEFAULT '0', + `CenterPower` tinyint(3) unsigned NOT NULL DEFAULT '0', + `RegenerationPeace` float NOT NULL DEFAULT '0', + `RegenerationCombat` float NOT NULL DEFAULT '0', + `BarType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `Flags` smallint(5) unsigned NOT NULL DEFAULT '0', + `StartInset` float NOT NULL DEFAULT '0', + `EndInset` float NOT NULL DEFAULT '0', + `FileDataID1` int(11) NOT NULL DEFAULT '0', + `FileDataID2` int(11) NOT NULL DEFAULT '0', + `FileDataID3` int(11) NOT NULL DEFAULT '0', + `FileDataID4` int(11) NOT NULL DEFAULT '0', + `FileDataID5` int(11) NOT NULL DEFAULT '0', + `FileDataID6` int(11) NOT NULL DEFAULT '0', + `Color1` int(11) NOT NULL DEFAULT '0', + `Color2` int(11) NOT NULL DEFAULT '0', + `Color3` int(11) NOT NULL DEFAULT '0', + `Color4` int(11) NOT NULL DEFAULT '0', + `Color5` int(11) NOT NULL DEFAULT '0', + `Color6` int(11) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unit_power_bar` +-- + +LOCK TABLES `unit_power_bar` WRITE; +/*!40000 ALTER TABLE `unit_power_bar` DISABLE KEYS */; +/*!40000 ALTER TABLE `unit_power_bar` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `unit_power_bar_locale` +-- + +DROP TABLE IF EXISTS `unit_power_bar_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `unit_power_bar_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `Name_lang` text, + `Cost_lang` text, + `OutOfError_lang` text, + `ToolTip_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `unit_power_bar_locale` +-- + +LOCK TABLES `unit_power_bar_locale` WRITE; +/*!40000 ALTER TABLE `unit_power_bar_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `unit_power_bar_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `vehicle` +-- + +DROP TABLE IF EXISTS `vehicle`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `vehicle` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `FlagsB` int(11) NOT NULL DEFAULT '0', + `TurnSpeed` float NOT NULL DEFAULT '0', + `PitchSpeed` float NOT NULL DEFAULT '0', + `PitchMin` float NOT NULL DEFAULT '0', + `PitchMax` float NOT NULL DEFAULT '0', + `MouseLookOffsetPitch` float NOT NULL DEFAULT '0', + `CameraFadeDistScalarMin` float NOT NULL DEFAULT '0', + `CameraFadeDistScalarMax` float NOT NULL DEFAULT '0', + `CameraPitchOffset` float NOT NULL DEFAULT '0', + `FacingLimitRight` float NOT NULL DEFAULT '0', + `FacingLimitLeft` float NOT NULL DEFAULT '0', + `CameraYawOffset` float NOT NULL DEFAULT '0', + `VehicleUIIndicatorID` smallint(5) unsigned NOT NULL DEFAULT '0', + `MissileTargetingID` int(11) NOT NULL DEFAULT '0', + `VehiclePOITypeID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UiLocomotionType` int(11) NOT NULL DEFAULT '0', + `SeatID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID4` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID5` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID6` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID7` smallint(5) unsigned NOT NULL DEFAULT '0', + `SeatID8` smallint(5) unsigned NOT NULL DEFAULT '0', + `PowerDisplayID1` smallint(5) unsigned NOT NULL DEFAULT '0', + `PowerDisplayID2` smallint(5) unsigned NOT NULL DEFAULT '0', + `PowerDisplayID3` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `vehicle` +-- + +LOCK TABLES `vehicle` WRITE; +/*!40000 ALTER TABLE `vehicle` DISABLE KEYS */; +/*!40000 ALTER TABLE `vehicle` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `vehicle_seat` +-- + +DROP TABLE IF EXISTS `vehicle_seat`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `vehicle_seat` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `AttachmentOffsetX` float NOT NULL DEFAULT '0', + `AttachmentOffsetY` float NOT NULL DEFAULT '0', + `AttachmentOffsetZ` float NOT NULL DEFAULT '0', + `CameraOffsetX` float NOT NULL DEFAULT '0', + `CameraOffsetY` float NOT NULL DEFAULT '0', + `CameraOffsetZ` float NOT NULL DEFAULT '0', + `Flags` int(11) NOT NULL DEFAULT '0', + `FlagsB` int(11) NOT NULL DEFAULT '0', + `FlagsC` int(11) NOT NULL DEFAULT '0', + `AttachmentID` tinyint(4) NOT NULL DEFAULT '0', + `EnterPreDelay` float NOT NULL DEFAULT '0', + `EnterSpeed` float NOT NULL DEFAULT '0', + `EnterGravity` float NOT NULL DEFAULT '0', + `EnterMinDuration` float NOT NULL DEFAULT '0', + `EnterMaxDuration` float NOT NULL DEFAULT '0', + `EnterMinArcHeight` float NOT NULL DEFAULT '0', + `EnterMaxArcHeight` float NOT NULL DEFAULT '0', + `EnterAnimStart` int(11) NOT NULL DEFAULT '0', + `EnterAnimLoop` int(11) NOT NULL DEFAULT '0', + `RideAnimStart` int(11) NOT NULL DEFAULT '0', + `RideAnimLoop` int(11) NOT NULL DEFAULT '0', + `RideUpperAnimStart` int(11) NOT NULL DEFAULT '0', + `RideUpperAnimLoop` int(11) NOT NULL DEFAULT '0', + `ExitPreDelay` float NOT NULL DEFAULT '0', + `ExitSpeed` float NOT NULL DEFAULT '0', + `ExitGravity` float NOT NULL DEFAULT '0', + `ExitMinDuration` float NOT NULL DEFAULT '0', + `ExitMaxDuration` float NOT NULL DEFAULT '0', + `ExitMinArcHeight` float NOT NULL DEFAULT '0', + `ExitMaxArcHeight` float NOT NULL DEFAULT '0', + `ExitAnimStart` int(11) NOT NULL DEFAULT '0', + `ExitAnimLoop` int(11) NOT NULL DEFAULT '0', + `ExitAnimEnd` int(11) NOT NULL DEFAULT '0', + `VehicleEnterAnim` smallint(6) NOT NULL DEFAULT '0', + `VehicleEnterAnimBone` tinyint(4) NOT NULL DEFAULT '0', + `VehicleExitAnim` smallint(6) NOT NULL DEFAULT '0', + `VehicleExitAnimBone` tinyint(4) NOT NULL DEFAULT '0', + `VehicleRideAnimLoop` smallint(6) NOT NULL DEFAULT '0', + `VehicleRideAnimLoopBone` tinyint(4) NOT NULL DEFAULT '0', + `PassengerAttachmentID` tinyint(4) NOT NULL DEFAULT '0', + `PassengerYaw` float NOT NULL DEFAULT '0', + `PassengerPitch` float NOT NULL DEFAULT '0', + `PassengerRoll` float NOT NULL DEFAULT '0', + `VehicleEnterAnimDelay` float NOT NULL DEFAULT '0', + `VehicleExitAnimDelay` float NOT NULL DEFAULT '0', + `VehicleAbilityDisplay` tinyint(4) NOT NULL DEFAULT '0', + `EnterUISoundID` int(10) unsigned NOT NULL DEFAULT '0', + `ExitUISoundID` int(10) unsigned NOT NULL DEFAULT '0', + `UiSkinFileDataID` int(11) NOT NULL DEFAULT '0', + `UiSkin` int(11) NOT NULL DEFAULT '0', + `CameraEnteringDelay` float NOT NULL DEFAULT '0', + `CameraEnteringDuration` float NOT NULL DEFAULT '0', + `CameraExitingDelay` float NOT NULL DEFAULT '0', + `CameraExitingDuration` float NOT NULL DEFAULT '0', + `CameraPosChaseRate` float NOT NULL DEFAULT '0', + `CameraFacingChaseRate` float NOT NULL DEFAULT '0', + `CameraEnteringZoom` float NOT NULL DEFAULT '0', + `CameraSeatZoomMin` float NOT NULL DEFAULT '0', + `CameraSeatZoomMax` float NOT NULL DEFAULT '0', + `EnterAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `RideAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `ExitAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `VehicleEnterAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `VehicleRideAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `VehicleExitAnimKitID` smallint(6) NOT NULL DEFAULT '0', + `CameraModeID` smallint(6) NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `vehicle_seat` +-- + +LOCK TABLES `vehicle_seat` WRITE; +/*!40000 ALTER TABLE `vehicle_seat` DISABLE KEYS */; +/*!40000 ALTER TABLE `vehicle_seat` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wmo_area_table` +-- + +DROP TABLE IF EXISTS `wmo_area_table`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `wmo_area_table` ( + `AreaName` text, + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `WmoID` smallint(5) unsigned NOT NULL DEFAULT '0', + `NameSetID` tinyint(3) unsigned NOT NULL DEFAULT '0', + `WmoGroupID` int(11) NOT NULL DEFAULT '0', + `SoundProviderPref` tinyint(3) unsigned NOT NULL DEFAULT '0', + `SoundProviderPrefUnderwater` tinyint(3) unsigned NOT NULL DEFAULT '0', + `AmbienceID` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwAmbience` smallint(5) unsigned NOT NULL DEFAULT '0', + `ZoneMusic` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwZoneMusic` int(10) unsigned NOT NULL DEFAULT '0', + `IntroSound` smallint(5) unsigned NOT NULL DEFAULT '0', + `UwIntroSound` smallint(5) unsigned NOT NULL DEFAULT '0', + `AreaTableID` smallint(5) unsigned NOT NULL DEFAULT '0', + `Flags` tinyint(3) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wmo_area_table` +-- + +LOCK TABLES `wmo_area_table` WRITE; +/*!40000 ALTER TABLE `wmo_area_table` DISABLE KEYS */; +/*!40000 ALTER TABLE `wmo_area_table` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `wmo_area_table_locale` +-- + +DROP TABLE IF EXISTS `wmo_area_table_locale`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `wmo_area_table_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `locale` varchar(4) NOT NULL, + `AreaName_lang` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci +/*!50500 PARTITION BY LIST COLUMNS(locale) +(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB, + PARTITION esES VALUES IN ('esES') ENGINE = InnoDB, + PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB, + PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB, + PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB, + PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB, + PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB, + PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB, + PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB, + PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `wmo_area_table_locale` +-- + +LOCK TABLES `wmo_area_table_locale` WRITE; +/*!40000 ALTER TABLE `wmo_area_table_locale` DISABLE KEYS */; +/*!40000 ALTER TABLE `wmo_area_table_locale` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `world_effect` +-- + +DROP TABLE IF EXISTS `world_effect`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `world_effect` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `QuestFeedbackEffectID` int(10) unsigned NOT NULL DEFAULT '0', + `WhenToDisplay` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TargetType` tinyint(3) unsigned NOT NULL DEFAULT '0', + `TargetAsset` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `CombatConditionID` smallint(5) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `world_effect` +-- + +LOCK TABLES `world_effect` WRITE; +/*!40000 ALTER TABLE `world_effect` DISABLE KEYS */; +/*!40000 ALTER TABLE `world_effect` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `world_map_overlay` +-- + +DROP TABLE IF EXISTS `world_map_overlay`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `world_map_overlay` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `UiMapArtID` int(10) unsigned NOT NULL DEFAULT '0', + `TextureWidth` smallint(5) unsigned NOT NULL DEFAULT '0', + `TextureHeight` smallint(5) unsigned NOT NULL DEFAULT '0', + `OffsetX` int(11) NOT NULL DEFAULT '0', + `OffsetY` int(11) NOT NULL DEFAULT '0', + `HitRectTop` int(11) NOT NULL DEFAULT '0', + `HitRectBottom` int(11) NOT NULL DEFAULT '0', + `HitRectLeft` int(11) NOT NULL DEFAULT '0', + `HitRectRight` int(11) NOT NULL DEFAULT '0', + `PlayerConditionID` int(10) unsigned NOT NULL DEFAULT '0', + `Flags` int(10) unsigned NOT NULL DEFAULT '0', + `AreaID1` int(10) unsigned NOT NULL DEFAULT '0', + `AreaID2` int(10) unsigned NOT NULL DEFAULT '0', + `AreaID3` int(10) unsigned NOT NULL DEFAULT '0', + `AreaID4` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `world_map_overlay` +-- + +LOCK TABLES `world_map_overlay` WRITE; +/*!40000 ALTER TABLE `world_map_overlay` DISABLE KEYS */; +/*!40000 ALTER TABLE `world_map_overlay` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `world_state_expression` +-- + +DROP TABLE IF EXISTS `world_state_expression`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!50503 SET character_set_client = utf8mb4 */; +CREATE TABLE `world_state_expression` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Expression` text, + `VerifiedBuild` int(11) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`,`VerifiedBuild`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `world_state_expression` +-- + +LOCK TABLES `world_state_expression` WRITE; +/*!40000 ALTER TABLE `world_state_expression` DISABLE KEYS */; +/*!40000 ALTER TABLE `world_state_expression` ENABLE KEYS */; +UNLOCK TABLES; + diff --git a/src/server/database/Database/Implementation/HotfixDatabase.cpp b/src/server/database/Database/Implementation/HotfixDatabase.cpp index 1ef4003d484..422ede2bf7a 100644 --- a/src/server/database/Database/Implementation/HotfixDatabase.cpp +++ b/src/server/database/Database/Implementation/HotfixDatabase.cpp @@ -38,7 +38,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // Achievement.db2 PrepareStatement(HOTFIX_SEL_ACHIEVEMENT, "SELECT Description, Title, Reward, ID, InstanceID, Faction, Supercedes, Category, MinimumCriteria, " - "Points, Flags, UiOrder, IconFileID, RewardItemID, CriteriaTree, SharesCriteria, CovenantID FROM achievement WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "Points, Flags, UiOrder, IconFileID, CriteriaTree, SharesCriteria FROM achievement WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ACHIEVEMENT, "SELECT MAX(ID) + 1 FROM achievement", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_ACHIEVEMENT, "SELECT ID, Description_lang, Title_lang, Reward_lang FROM achievement_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -81,16 +81,17 @@ void HotfixDatabaseConnection::DoPrepareStatements() // AreaTable.db2 PrepareStatement(HOTFIX_SEL_AREA_TABLE, "SELECT ID, ZoneName, AreaName, ContinentID, ParentAreaID, AreaBit, SoundProviderPref, " - "SoundProviderPrefUnderwater, AmbienceID, UwAmbience, ZoneMusic, UwZoneMusic, IntroSound, UwIntroSound, FactionGroupMask, AmbientMultiplier, " - "MountFlags, PvpCombatWorldStateID, WildBattlePetLevelMin, WildBattlePetLevelMax, WindSettingsID, ContentTuningID, Flags1, Flags2, " + "SoundProviderPrefUnderwater, AmbienceID, UwAmbience, ZoneMusic, UwZoneMusic, ExplorationLevel, IntroSound, UwIntroSound, FactionGroupMask, " + "AmbientMultiplier, MountFlags, PvpCombatWorldStateID, WildBattlePetLevelMin, WildBattlePetLevelMax, WindSettingsID, Flags1, Flags2, " "LiquidTypeID1, LiquidTypeID2, LiquidTypeID3, LiquidTypeID4 FROM area_table WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_AREA_TABLE, "SELECT MAX(ID) + 1 FROM area_table", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_AREA_TABLE, "SELECT ID, AreaName_lang FROM area_table_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // AreaTrigger.db2 - PrepareStatement(HOTFIX_SEL_AREA_TRIGGER, "SELECT PosX, PosY, PosZ, ID, ContinentID, PhaseUseFlags, PhaseID, PhaseGroupID, Radius, BoxLength, " - "BoxWidth, BoxHeight, BoxYaw, ShapeType, ShapeID, AreaTriggerActionSetID, Flags FROM area_trigger WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_AREA_TRIGGER, "SELECT Message, PosX, PosY, PosZ, ID, ContinentID, PhaseUseFlags, PhaseID, PhaseGroupID, Radius, " + "BoxLength, BoxWidth, BoxHeight, BoxYaw, ShapeType, ShapeID, AreaTriggerActionSetID, Flags FROM area_trigger WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_AREA_TRIGGER, "SELECT MAX(ID) + 1 FROM area_trigger", CONNECTION_SYNCH); + PREPARE_LOCALE_STMT(HOTFIX_SEL_AREA_TRIGGER, "SELECT ID, Message_lang FROM area_trigger_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // ArmorLocation.db2 PrepareStatement(HOTFIX_SEL_ARMOR_LOCATION, "SELECT ID, Clothmodifier, Leathermodifier, Chainmodifier, Platemodifier, Modifier FROM armor_location" @@ -106,8 +107,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // ArtifactAppearance.db2 PrepareStatement(HOTFIX_SEL_ARTIFACT_APPEARANCE, "SELECT Name, ID, ArtifactAppearanceSetID, DisplayIndex, UnlockPlayerConditionID, " "ItemAppearanceModifierID, UiSwatchColor, UiModelSaturation, UiModelOpacity, OverrideShapeshiftFormID, OverrideShapeshiftDisplayID, " - "UiItemAppearanceID, UiAltItemAppearanceID, Flags, UiCameraID, UsablePlayerConditionID FROM artifact_appearance" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "UiItemAppearanceID, UiAltItemAppearanceID, Flags, UiCameraID FROM artifact_appearance WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ARTIFACT_APPEARANCE, "SELECT MAX(ID) + 1 FROM artifact_appearance", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_ARTIFACT_APPEARANCE, "SELECT ID, Name_lang FROM artifact_appearance_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -217,11 +217,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() PrepareStatement(HOTFIX_SEL_AZERITE_TIER_UNLOCK_SET, "SELECT ID, Flags FROM azerite_tier_unlock_set WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_AZERITE_TIER_UNLOCK_SET, "SELECT MAX(ID) + 1 FROM azerite_tier_unlock_set", CONNECTION_SYNCH); - // AzeriteUnlockMapping.db2 - PrepareStatement(HOTFIX_SEL_AZERITE_UNLOCK_MAPPING, "SELECT ID, ItemLevel, ItemBonusListHead, ItemBonusListShoulders, ItemBonusListChest, " - "AzeriteUnlockMappingSetID FROM azerite_unlock_mapping WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_AZERITE_UNLOCK_MAPPING, "SELECT MAX(ID) + 1 FROM azerite_unlock_mapping", CONNECTION_SYNCH); - // BankBagSlotPrices.db2 PrepareStatement(HOTFIX_SEL_BANK_BAG_SLOT_PRICES, "SELECT ID, Cost FROM bank_bag_slot_prices WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_BANK_BAG_SLOT_PRICES, "SELECT MAX(ID) + 1 FROM bank_bag_slot_prices", CONNECTION_SYNCH); @@ -231,7 +226,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_BANNED_ADDONS, "SELECT MAX(ID) + 1 FROM banned_addons", CONNECTION_SYNCH); // BarberShopStyle.db2 - PrepareStatement(HOTFIX_SEL_BARBER_SHOP_STYLE, "SELECT ID, DisplayName, Description, Type, CostModifier, Race, Sex, Data FROM barber_shop_style" + PrepareStatement(HOTFIX_SEL_BARBER_SHOP_STYLE, "SELECT DisplayName, Description, ID, Type, CostModifier, Race, Sex, Data FROM barber_shop_style" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_BARBER_SHOP_STYLE, "SELECT MAX(ID) + 1 FROM barber_shop_style", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_BARBER_SHOP_STYLE, "SELECT ID, DisplayName_lang, Description_lang FROM barber_shop_style_locale" @@ -245,7 +240,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // BattlePetBreedQuality.db2 - PrepareStatement(HOTFIX_SEL_BATTLE_PET_BREED_QUALITY, "SELECT ID, MaxQualityRoll, StateMultiplier, QualityEnum FROM battle_pet_breed_quality" + PrepareStatement(HOTFIX_SEL_BATTLE_PET_BREED_QUALITY, "SELECT ID, StateMultiplier, QualityEnum FROM battle_pet_breed_quality" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_BATTLE_PET_BREED_QUALITY, "SELECT MAX(ID) + 1 FROM battle_pet_breed_quality", CONNECTION_SYNCH); @@ -256,7 +251,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // BattlePetSpecies.db2 PrepareStatement(HOTFIX_SEL_BATTLE_PET_SPECIES, "SELECT Description, SourceText, ID, CreatureID, SummonSpellID, IconFileDataID, PetTypeEnum, " - "Flags, SourceTypeEnum, CardUIModelSceneID, LoadoutUIModelSceneID, CovenantID FROM battle_pet_species WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "Flags, SourceTypeEnum, CardUIModelSceneID, LoadoutUIModelSceneID FROM battle_pet_species WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_BATTLE_PET_SPECIES, "SELECT MAX(ID) + 1 FROM battle_pet_species", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_BATTLE_PET_SPECIES, "SELECT ID, Description_lang, SourceText_lang FROM battle_pet_species_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -283,11 +278,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_BROADCAST_TEXT, "SELECT ID, Text_lang, Text1_lang FROM broadcast_text_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); - // BroadcastTextDuration.db2 - PrepareStatement(HOTFIX_SEL_BROADCAST_TEXT_DURATION, "SELECT ID, BroadcastTextID, Locale, Duration FROM broadcast_text_duration" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_BROADCAST_TEXT_DURATION, "SELECT MAX(ID) + 1 FROM broadcast_text_duration", CONNECTION_SYNCH); - // CfgCategories.db2 PrepareStatement(HOTFIX_SEL_CFG_CATEGORIES, "SELECT ID, Name, LocaleMask, CreateCharsetMask, ExistingCharsetMask, Flags, `Order`" " FROM cfg_categories WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); @@ -299,11 +289,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CFG_REGIONS, "SELECT MAX(ID) + 1 FROM cfg_regions", CONNECTION_SYNCH); - // ChallengeModeItemBonusOverride.db2 - PrepareStatement(HOTFIX_SEL_CHALLENGE_MODE_ITEM_BONUS_OVERRIDE, "SELECT ID, ItemBonusTreeGroupID, DstItemBonusTreeID, Type, Value, " - "MythicPlusSeasonID, PvPSeasonID, SrcItemBonusTreeID FROM challenge_mode_item_bonus_override WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHALLENGE_MODE_ITEM_BONUS_OVERRIDE, "SELECT MAX(ID) + 1 FROM challenge_mode_item_bonus_override", CONNECTION_SYNCH); - // CharTitles.db2 PrepareStatement(HOTFIX_SEL_CHAR_TITLES, "SELECT ID, Name, Name1, MaskID, Flags FROM char_titles WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHAR_TITLES, "SELECT MAX(ID) + 1 FROM char_titles", CONNECTION_SYNCH); @@ -311,7 +296,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() " AND locale = ?", CONNECTION_SYNCH); // CharacterLoadout.db2 - PrepareStatement(HOTFIX_SEL_CHARACTER_LOADOUT, "SELECT ID, RaceMask, ChrClassID, Purpose, ItemContext FROM character_loadout" + PrepareStatement(HOTFIX_SEL_CHARACTER_LOADOUT, "SELECT RaceMask, ID, ChrClassID, Purpose, ItemContext FROM character_loadout" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHARACTER_LOADOUT, "SELECT MAX(ID) + 1 FROM character_loadout", CONNECTION_SYNCH); @@ -321,7 +306,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHARACTER_LOADOUT_ITEM, "SELECT MAX(ID) + 1 FROM character_loadout_item", CONNECTION_SYNCH); // ChatChannels.db2 - PrepareStatement(HOTFIX_SEL_CHAT_CHANNELS, "SELECT ID, Name, Shortcut, Flags, FactionGroup, Ruleset FROM chat_channels" + PrepareStatement(HOTFIX_SEL_CHAT_CHANNELS, "SELECT Name, Shortcut, ID, Flags, FactionGroup, Ruleset FROM chat_channels" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHAT_CHANNELS, "SELECT MAX(ID) + 1 FROM chat_channels", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CHAT_CHANNELS, "SELECT ID, Name_lang, Shortcut_lang FROM chat_channels_locale WHERE (`VerifiedBuild` > 0) = ?" @@ -333,18 +318,13 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CLASS_UI_DISPLAY, "SELECT MAX(ID) + 1 FROM chr_class_ui_display", CONNECTION_SYNCH); // ChrClasses.db2 - PrepareStatement(HOTFIX_SEL_CHR_CLASSES, "SELECT Name, Filename, NameMale, NameFemale, PetNameToken, Description, RoleInfoString, DisabledString, " - "HyphenatedNameMale, HyphenatedNameFemale, ID, CreateScreenFileDataID, SelectScreenFileDataID, IconFileDataID, LowResScreenFileDataID, Flags, " - "SpellTextureBlobFileDataID, ArmorTypeMask, CharStartKitUnknown901, MaleCharacterCreationVisualFallback, " - "MaleCharacterCreationIdleVisualFallback, FemaleCharacterCreationVisualFallback, FemaleCharacterCreationIdleVisualFallback, " - "CharacterCreationIdleGroundVisualFallback, CharacterCreationGroundVisualFallback, AlteredFormCharacterCreationIdleVisualFallback, " - "CharacterCreationAnimLoopWaitTimeMsFallback, CinematicSequenceID, DefaultSpec, PrimaryStatPriority, DisplayPower, " - "RangedAttackPowerPerAgility, AttackPowerPerAgility, AttackPowerPerStrength, SpellClassSet, ClassColorR, ClassColorG, ClassColorB, RolesMask" - " FROM chr_classes WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_CHR_CLASSES, "SELECT Name, Filename, NameMale, NameFemale, PetNameToken, ID, CreateScreenFileDataID, " + "SelectScreenFileDataID, IconFileDataID, LowResScreenFileDataID, Flags, StartingLevel, ArmorTypeMask, CinematicSequenceID, DefaultSpec, " + "HasStrengthAttackBonus, PrimaryStatPriority, DisplayPower, RangedAttackPowerPerAgility, AttackPowerPerAgility, AttackPowerPerStrength, " + "SpellClassSet, RolesMask, DamageBonusStat, HasRelicSlot FROM chr_classes WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CLASSES, "SELECT MAX(ID) + 1 FROM chr_classes", CONNECTION_SYNCH); - PREPARE_LOCALE_STMT(HOTFIX_SEL_CHR_CLASSES, "SELECT ID, Name_lang, NameMale_lang, NameFemale_lang, Description_lang, RoleInfoString_lang, " - "DisabledString_lang, HyphenatedNameMale_lang, HyphenatedNameFemale_lang FROM chr_classes_locale WHERE (`VerifiedBuild` > 0) = ?" - " AND locale = ?", CONNECTION_SYNCH); + PREPARE_LOCALE_STMT(HOTFIX_SEL_CHR_CLASSES, "SELECT ID, Name_lang, NameMale_lang, NameFemale_lang FROM chr_classes_locale" + " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // ChrClassesXPowerTypes.db2 PrepareStatement(HOTFIX_SEL_CHR_CLASSES_X_POWER_TYPES, "SELECT ID, PowerType, ClassID FROM chr_classes_x_power_types" @@ -361,26 +341,26 @@ void HotfixDatabaseConnection::DoPrepareStatements() // ChrCustomizationDisplayInfo.db2 PrepareStatement(HOTFIX_SEL_CHR_CUSTOMIZATION_DISPLAY_INFO, "SELECT ID, ShapeshiftFormID, DisplayID, BarberShopMinCameraDistance, " - "BarberShopHeightOffset, BarberShopCameraZoomOffset FROM chr_customization_display_info WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "BarberShopHeightOffset FROM chr_customization_display_info WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_DISPLAY_INFO, "SELECT MAX(ID) + 1 FROM chr_customization_display_info", CONNECTION_SYNCH); // ChrCustomizationElement.db2 PrepareStatement(HOTFIX_SEL_CHR_CUSTOMIZATION_ELEMENT, "SELECT ID, ChrCustomizationChoiceID, RelatedChrCustomizationChoiceID, " "ChrCustomizationGeosetID, ChrCustomizationSkinnedModelID, ChrCustomizationMaterialID, ChrCustomizationBoneSetID, " - "ChrCustomizationCondModelID, ChrCustomizationDisplayInfoID, ChrCustItemGeoModifyID, ChrCustomizationVoiceID, AnimKitID, ParticleColorID, " - "ChrCustGeoComponentLinkID FROM chr_customization_element WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ChrCustomizationCondModelID, ChrCustomizationDisplayInfoID, ChrCustItemGeoModifyID, ChrCustomizationVoiceID, AnimKitID, ParticleColorID" + " FROM chr_customization_element WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_ELEMENT, "SELECT MAX(ID) + 1 FROM chr_customization_element", CONNECTION_SYNCH); // ChrCustomizationOption.db2 PrepareStatement(HOTFIX_SEL_CHR_CUSTOMIZATION_OPTION, "SELECT Name, ID, SecondaryID, Flags, ChrModelID, SortIndex, ChrCustomizationCategoryID, " - "OptionType, BarberShopCostModifier, ChrCustomizationID, ChrCustomizationReqID, UiOrderIndex, AddedInPatch FROM chr_customization_option" + "OptionType, BarberShopCostModifier, ChrCustomizationID, ChrCustomizationReqID, UiOrderIndex FROM chr_customization_option" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_OPTION, "SELECT MAX(ID) + 1 FROM chr_customization_option", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_OPTION, "SELECT ID, Name_lang FROM chr_customization_option_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // ChrCustomizationReq.db2 - PrepareStatement(HOTFIX_SEL_CHR_CUSTOMIZATION_REQ, "SELECT ID, RaceMask, ReqSource, Flags, ClassMask, AchievementID, QuestID, OverrideArchive, " + PrepareStatement(HOTFIX_SEL_CHR_CUSTOMIZATION_REQ, "SELECT RaceMask, ReqSource, ID, Flags, ClassMask, AchievementID, QuestID, OverrideArchive, " "ItemModifiedAppearanceID FROM chr_customization_req WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_REQ, "SELECT MAX(ID) + 1 FROM chr_customization_req", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CHR_CUSTOMIZATION_REQ, "SELECT ID, ReqSource_lang FROM chr_customization_req_locale WHERE (`VerifiedBuild` > 0) = ?" @@ -406,15 +386,16 @@ void HotfixDatabaseConnection::DoPrepareStatements() // ChrRaces.db2 PrepareStatement(HOTFIX_SEL_CHR_RACES, "SELECT ID, ClientPrefix, ClientFileString, Name, NameFemale, NameLowercase, NameFemaleLowercase, " "LoreName, LoreNameFemale, LoreNameLower, LoreNameLowerFemale, LoreDescription, ShortName, ShortNameFemale, ShortNameLower, " - "ShortNameLowerFemale, Flags, FactionID, CinematicSequenceID, ResSicknessSpellID, SplashSoundID, Alliance, RaceRelated, " - "UnalteredVisualRaceID, DefaultClassID, CreateScreenFileDataID, SelectScreenFileDataID, NeutralRaceID, LowResScreenFileDataID, " - "AlteredFormStartVisualKitID1, AlteredFormStartVisualKitID2, AlteredFormStartVisualKitID3, AlteredFormFinishVisualKitID1, " - "AlteredFormFinishVisualKitID2, AlteredFormFinishVisualKitID3, HeritageArmorAchievementID, StartingLevel, UiDisplayOrder, " - "MaleModelFallbackRaceID, FemaleModelFallbackRaceID, MaleTextureFallbackRaceID, FemaleTextureFallbackRaceID, PlayableRaceBit, " - "HelmetAnimScalingRaceID, TransmogrifyDisabledSlotMask, UnalteredVisualCustomizationRaceID, AlteredFormCustomizeOffsetFallback1, " + "ShortNameLowerFemale, Flags, MaleDisplayID, FemaleDisplayID, HighResMaleDisplayID, HighResFemaleDisplayID, ResSicknessSpellID, " + "SplashSoundID, CreateScreenFileDataID, SelectScreenFileDataID, LowResScreenFileDataID, AlteredFormStartVisualKitID1, " + "AlteredFormStartVisualKitID2, AlteredFormStartVisualKitID3, AlteredFormFinishVisualKitID1, AlteredFormFinishVisualKitID2, " + "AlteredFormFinishVisualKitID3, HeritageArmorAchievementID, StartingLevel, UiDisplayOrder, PlayableRaceBit, FemaleSkeletonFileDataID, " + "MaleSkeletonFileDataID, HelmetAnimScalingRaceID, TransmogrifyDisabledSlotMask, AlteredFormCustomizeOffsetFallback1, " "AlteredFormCustomizeOffsetFallback2, AlteredFormCustomizeOffsetFallback3, AlteredFormCustomizeRotationFallback, Unknown910_11, " - "Unknown910_12, Unknown910_13, Unknown910_21, Unknown910_22, Unknown910_23, Unknown1000, BaseLanguage, CreatureType, MaleModelFallbackSex, " - "FemaleModelFallbackSex, MaleTextureFallbackSex, FemaleTextureFallbackSex FROM chr_races WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "Unknown910_12, Unknown910_13, Unknown910_21, Unknown910_22, Unknown910_23, FactionID, CinematicSequenceID, BaseLanguage, CreatureType, " + "Alliance, RaceRelated, UnalteredVisualRaceID, DefaultClassID, NeutralRaceID, MaleModelFallbackRaceID, MaleModelFallbackSex, " + "FemaleModelFallbackRaceID, FemaleModelFallbackSex, MaleTextureFallbackRaceID, MaleTextureFallbackSex, FemaleTextureFallbackRaceID, " + "FemaleTextureFallbackSex, UnalteredVisualCustomizationRaceID FROM chr_races WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CHR_RACES, "SELECT MAX(ID) + 1 FROM chr_races", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CHR_RACES, "SELECT ID, Name_lang, NameFemale_lang, NameLowercase_lang, NameFemaleLowercase_lang, LoreName_lang, " "LoreNameFemale_lang, LoreNameLower_lang, LoreNameLowerFemale_lang, LoreDescription_lang, ShortName_lang, ShortNameFemale_lang, " @@ -429,8 +410,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // CinematicCamera.db2 - PrepareStatement(HOTFIX_SEL_CINEMATIC_CAMERA, "SELECT ID, OriginX, OriginY, OriginZ, SoundID, OriginFacing, FileDataID, ConversationID" - " FROM cinematic_camera WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_CINEMATIC_CAMERA, "SELECT ID, OriginX, OriginY, OriginZ, SoundID, OriginFacing, FileDataID FROM cinematic_camera" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CINEMATIC_CAMERA, "SELECT MAX(ID) + 1 FROM cinematic_camera", CONNECTION_SYNCH); // CinematicSequences.db2 @@ -449,30 +430,15 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONDITIONAL_CONTENT_TUNING, "SELECT MAX(ID) + 1 FROM conditional_content_tuning", CONNECTION_SYNCH); // ContentTuning.db2 - PrepareStatement(HOTFIX_SEL_CONTENT_TUNING, "SELECT ID, Flags, ExpansionID, MinLevel, MaxLevel, MinLevelType, MaxLevelType, TargetLevelDelta, " - "TargetLevelMaxDelta, TargetLevelMin, TargetLevelMax, MinItemLevel, QuestXpMultiplier FROM content_tuning WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONTENT_TUNING, "SELECT MAX(ID) + 1 FROM content_tuning", CONNECTION_SYNCH); - - // ContentTuningXExpected.db2 - PrepareStatement(HOTFIX_SEL_CONTENT_TUNING_X_EXPECTED, "SELECT ID, ExpectedStatModID, MinMythicPlusSeasonID, MaxMythicPlusSeasonID, " - "ContentTuningID FROM content_tuning_x_expected WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONTENT_TUNING_X_EXPECTED, "SELECT MAX(ID) + 1 FROM content_tuning_x_expected", CONNECTION_SYNCH); - - // ContentTuningXLabel.db2 - PrepareStatement(HOTFIX_SEL_CONTENT_TUNING_X_LABEL, "SELECT ID, LabelID, ContentTuningID FROM content_tuning_x_label" + PrepareStatement(HOTFIX_SEL_CONTENT_TUNING, "SELECT ID, MinLevel, MaxLevel, Flags, ExpectedStatModID, DifficultyESMID FROM content_tuning" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONTENT_TUNING_X_LABEL, "SELECT MAX(ID) + 1 FROM content_tuning_x_label", CONNECTION_SYNCH); + PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONTENT_TUNING, "SELECT MAX(ID) + 1 FROM content_tuning", CONNECTION_SYNCH); // ConversationLine.db2 - PrepareStatement(HOTFIX_SEL_CONVERSATION_LINE, "SELECT ID, BroadcastTextID, Unused1020, SpellVisualKitID, AdditionalDuration, " - "NextConversationLineID, AnimKitID, SpeechType, StartAnimation, EndAnimation FROM conversation_line WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_CONVERSATION_LINE, "SELECT ID, BroadcastTextID, SpellVisualKitID, AdditionalDuration, NextConversationLineID, " + "AnimKitID, SpeechType, StartAnimation, EndAnimation FROM conversation_line WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CONVERSATION_LINE, "SELECT MAX(ID) + 1 FROM conversation_line", CONNECTION_SYNCH); - // CorruptionEffects.db2 - PrepareStatement(HOTFIX_SEL_CORRUPTION_EFFECTS, "SELECT ID, MinCorruption, Aura, PlayerConditionID, Flags FROM corruption_effects" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_CORRUPTION_EFFECTS, "SELECT MAX(ID) + 1 FROM corruption_effects", CONNECTION_SYNCH); - // CreatureDisplayInfo.db2 PrepareStatement(HOTFIX_SEL_CREATURE_DISPLAY_INFO, "SELECT ID, ModelID, SoundID, SizeClass, CreatureModelScale, CreatureModelAlpha, BloodID, " "ExtendedDisplayInfoID, NPCSoundID, ParticleColorID, PortraitCreatureDisplayInfoID, PortraitTextureFileDataID, ObjectEffectPackageID, " @@ -482,23 +448,23 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_CREATURE_DISPLAY_INFO, "SELECT MAX(ID) + 1 FROM creature_display_info", CONNECTION_SYNCH); // CreatureDisplayInfoExtra.db2 - PrepareStatement(HOTFIX_SEL_CREATURE_DISPLAY_INFO_EXTRA, "SELECT ID, DisplayRaceID, DisplaySexID, DisplayClassID, Flags, BakeMaterialResourcesID, " - "HDBakeMaterialResourcesID FROM creature_display_info_extra WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_CREATURE_DISPLAY_INFO_EXTRA, "SELECT ID, DisplayRaceID, DisplaySexID, DisplayClassID, SkinID, FaceID, HairStyleID, " + "HairColorID, FacialHairID, Flags, BakeMaterialResourcesID, HDBakeMaterialResourcesID, CustomDisplayOption1, CustomDisplayOption2, " + "CustomDisplayOption3 FROM creature_display_info_extra WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CREATURE_DISPLAY_INFO_EXTRA, "SELECT MAX(ID) + 1 FROM creature_display_info_extra", CONNECTION_SYNCH); // CreatureFamily.db2 PrepareStatement(HOTFIX_SEL_CREATURE_FAMILY, "SELECT ID, Name, MinScale, MinScaleLevel, MaxScale, MaxScaleLevel, PetFoodMask, PetTalentType, " - "IconFileID, SkillLine1, SkillLine2 FROM creature_family WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "CategoryEnumID, IconFileID, SkillLine1, SkillLine2 FROM creature_family WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CREATURE_FAMILY, "SELECT MAX(ID) + 1 FROM creature_family", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CREATURE_FAMILY, "SELECT ID, Name_lang FROM creature_family_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // CreatureModelData.db2 - PrepareStatement(HOTFIX_SEL_CREATURE_MODEL_DATA, "SELECT ID, GeoBox1, GeoBox2, GeoBox3, GeoBox4, GeoBox5, GeoBox6, Flags, FileDataID, WalkSpeed, " - "RunSpeed, BloodID, FootprintTextureID, FootprintTextureLength, FootprintTextureWidth, FootprintParticleScale, FoleyMaterialID, " - "FootstepCameraEffectID, DeathThudCameraEffectID, SoundID, SizeClass, CollisionWidth, CollisionHeight, WorldEffectScale, " - "CreatureGeosetDataID, HoverHeight, AttachedEffectScale, ModelScale, MissileCollisionRadius, MissileCollisionPush, MissileCollisionRaise, " - "MountHeight, OverrideLootEffectScale, OverrideNameScale, OverrideSelectionRadius, TamedPetBaseScale, Unknown820_1, Unknown820_2, " - "Unknown820_31, Unknown820_32 FROM creature_model_data WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_CREATURE_MODEL_DATA, "SELECT ID, GeoBox1, GeoBox2, GeoBox3, GeoBox4, GeoBox5, GeoBox6, Flags, FileDataID, BloodID, " + "FootprintTextureID, FootprintTextureLength, FootprintTextureWidth, FootprintParticleScale, FoleyMaterialID, FootstepCameraEffectID, " + "DeathThudCameraEffectID, SoundID, SizeClass, CollisionWidth, CollisionHeight, WorldEffectScale, CreatureGeosetDataID, HoverHeight, " + "AttachedEffectScale, ModelScale, MissileCollisionRadius, MissileCollisionPush, MissileCollisionRaise, MountHeight, OverrideLootEffectScale, " + "OverrideNameScale, OverrideSelectionRadius, TamedPetBaseScale FROM creature_model_data WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CREATURE_MODEL_DATA, "SELECT MAX(ID) + 1 FROM creature_model_data", CONNECTION_SYNCH); // CreatureType.db2 @@ -527,8 +493,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // CurrencyTypes.db2 PrepareStatement(HOTFIX_SEL_CURRENCY_TYPES, "SELECT ID, Name, Description, CategoryID, InventoryIconFileID, SpellWeight, SpellCategory, MaxQty, " - "MaxEarnablePerWeek, Quality, FactionID, ItemGroupSoundsID, XpQuestDifficulty, AwardConditionID, MaxQtyWorldStateID, " - "RechargingAmountPerCycle, RechargingCycleDurationMS, Flags1, Flags2 FROM currency_types WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "MaxEarnablePerWeek, Quality, FactionID, AwardConditionID, Flags1, Flags2 FROM currency_types WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_CURRENCY_TYPES, "SELECT MAX(ID) + 1 FROM currency_types", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_CURRENCY_TYPES, "SELECT ID, Name_lang, Description_lang FROM currency_types_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -558,8 +523,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_DIFFICULTY, "SELECT ID, Name_lang FROM difficulty_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // DungeonEncounter.db2 - PrepareStatement(HOTFIX_SEL_DUNGEON_ENCOUNTER, "SELECT Name, ID, MapID, DifficultyID, OrderIndex, CompleteWorldStateID, Bit, Flags, " - "SpellIconFileID, Faction FROM dungeon_encounter WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_DUNGEON_ENCOUNTER, "SELECT Name, ID, MapID, DifficultyID, OrderIndex, Bit, Flags, Faction FROM dungeon_encounter" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_DUNGEON_ENCOUNTER, "SELECT MAX(ID) + 1 FROM dungeon_encounter", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_DUNGEON_ENCOUNTER, "SELECT ID, Name_lang FROM dungeon_encounter_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -604,8 +569,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_EXPECTED_STAT_MOD, "SELECT MAX(ID) + 1 FROM expected_stat_mod", CONNECTION_SYNCH); // Faction.db2 - PrepareStatement(HOTFIX_SEL_FACTION, "SELECT ID, ReputationRaceMask1, ReputationRaceMask2, ReputationRaceMask3, ReputationRaceMask4, Name, " - "Description, ReputationIndex, ParentFactionID, Expansion, FriendshipRepID, Flags, ParagonFactionID, RenownFactionID, RenownCurrencyID, " + PrepareStatement(HOTFIX_SEL_FACTION, "SELECT ReputationRaceMask1, ReputationRaceMask2, ReputationRaceMask3, ReputationRaceMask4, Name, " + "Description, ID, ReputationIndex, ParentFactionID, Expansion, FriendshipRepID, Flags, ParagonFactionID, RenownFactionID, RenownCurrencyID, " "ReputationClassMask1, ReputationClassMask2, ReputationClassMask3, ReputationClassMask4, ReputationFlags1, ReputationFlags2, " "ReputationFlags3, ReputationFlags4, ReputationBase1, ReputationBase2, ReputationBase3, ReputationBase4, ReputationMax1, ReputationMax2, " "ReputationMax3, ReputationMax4, ParentFactionMod1, ParentFactionMod2, ParentFactionCap1, ParentFactionCap2 FROM faction" @@ -620,18 +585,18 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_FACTION_TEMPLATE, "SELECT MAX(ID) + 1 FROM faction_template", CONNECTION_SYNCH); // FriendshipRepReaction.db2 - PrepareStatement(HOTFIX_SEL_FRIENDSHIP_REP_REACTION, "SELECT ID, Reaction, FriendshipRepID, ReactionThreshold, OverrideColor" - " FROM friendship_rep_reaction WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_FRIENDSHIP_REP_REACTION, "SELECT ID, Reaction, FriendshipRepID, ReactionThreshold FROM friendship_rep_reaction" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_FRIENDSHIP_REP_REACTION, "SELECT MAX(ID) + 1 FROM friendship_rep_reaction", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_FRIENDSHIP_REP_REACTION, "SELECT ID, Reaction_lang FROM friendship_rep_reaction_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // FriendshipReputation.db2 - PrepareStatement(HOTFIX_SEL_FRIENDSHIP_REPUTATION, "SELECT Description, StandingModified, StandingChanged, ID, FactionID, TextureFileID, Flags" - " FROM friendship_reputation WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_FRIENDSHIP_REPUTATION, "SELECT Description, ID, Field34146722002, Field34146722003 FROM friendship_reputation" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_FRIENDSHIP_REPUTATION, "SELECT MAX(ID) + 1 FROM friendship_reputation", CONNECTION_SYNCH); - PREPARE_LOCALE_STMT(HOTFIX_SEL_FRIENDSHIP_REPUTATION, "SELECT ID, Description_lang, StandingModified_lang, StandingChanged_lang" - " FROM friendship_reputation_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); + PREPARE_LOCALE_STMT(HOTFIX_SEL_FRIENDSHIP_REPUTATION, "SELECT ID, Description_lang FROM friendship_reputation_locale" + " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // GameobjectArtKit.db2 PrepareStatement(HOTFIX_SEL_GAMEOBJECT_ART_KIT, "SELECT ID, AttachModelFileID, TextureVariationFileID1, TextureVariationFileID2, " @@ -639,9 +604,9 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_GAMEOBJECT_ART_KIT, "SELECT MAX(ID) + 1 FROM gameobject_art_kit", CONNECTION_SYNCH); // GameobjectDisplayInfo.db2 - PrepareStatement(HOTFIX_SEL_GAMEOBJECT_DISPLAY_INFO, "SELECT ID, GeoBoxMinX, GeoBoxMinY, GeoBoxMinZ, GeoBoxMaxX, GeoBoxMaxY, GeoBoxMaxZ, " - "FileDataID, ObjectEffectPackageID, OverrideLootEffectScale, OverrideNameScale, AlternateDisplayType, ClientCreatureDisplayInfoID, " - "ClientItemID FROM gameobject_display_info WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_GAMEOBJECT_DISPLAY_INFO, "SELECT ID, ModelName, GeoBoxMinX, GeoBoxMinY, GeoBoxMinZ, GeoBoxMaxX, GeoBoxMaxY, " + "GeoBoxMaxZ, FileDataID, ObjectEffectPackageID, OverrideLootEffectScale, OverrideNameScale FROM gameobject_display_info" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GAMEOBJECT_DISPLAY_INFO, "SELECT MAX(ID) + 1 FROM gameobject_display_info", CONNECTION_SYNCH); // Gameobjects.db2 @@ -652,7 +617,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_GAMEOBJECTS, "SELECT ID, Name_lang FROM gameobjects_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // GarrAbility.db2 - PrepareStatement(HOTFIX_SEL_GARR_ABILITY, "SELECT ID, Name, Description, GarrAbilityCategoryID, GarrFollowerTypeID, IconFileDataID, " + PrepareStatement(HOTFIX_SEL_GARR_ABILITY, "SELECT Name, Description, ID, GarrAbilityCategoryID, GarrFollowerTypeID, IconFileDataID, " "FactionChangeGarrAbilityID, Flags FROM garr_ability WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_ABILITY, "SELECT MAX(ID) + 1 FROM garr_ability", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_GARR_ABILITY, "SELECT ID, Name_lang, Description_lang FROM garr_ability_locale WHERE (`VerifiedBuild` > 0) = ?" @@ -673,19 +638,19 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_BUILDING_PLOT_INST, "SELECT MAX(ID) + 1 FROM garr_building_plot_inst", CONNECTION_SYNCH); // GarrClassSpec.db2 - PrepareStatement(HOTFIX_SEL_GARR_CLASS_SPEC, "SELECT ID, ClassSpec, ClassSpecMale, ClassSpecFemale, UiTextureAtlasMemberID, GarrFollItemSetID, " + PrepareStatement(HOTFIX_SEL_GARR_CLASS_SPEC, "SELECT ClassSpec, ClassSpecMale, ClassSpecFemale, ID, UiTextureAtlasMemberID, GarrFollItemSetID, " "FollowerClassLimit, Flags FROM garr_class_spec WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_CLASS_SPEC, "SELECT MAX(ID) + 1 FROM garr_class_spec", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_GARR_CLASS_SPEC, "SELECT ID, ClassSpec_lang, ClassSpecMale_lang, ClassSpecFemale_lang FROM garr_class_spec_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // GarrFollower.db2 - PrepareStatement(HOTFIX_SEL_GARR_FOLLOWER, "SELECT ID, HordeSourceText, AllianceSourceText, TitleName, GarrTypeID, GarrFollowerTypeID, " + PrepareStatement(HOTFIX_SEL_GARR_FOLLOWER, "SELECT HordeSourceText, AllianceSourceText, TitleName, ID, GarrTypeID, GarrFollowerTypeID, " "HordeCreatureID, AllianceCreatureID, HordeGarrFollRaceID, AllianceGarrFollRaceID, HordeGarrClassSpecID, AllianceGarrClassSpecID, Quality, " "FollowerLevel, ItemLevelWeapon, ItemLevelArmor, HordeSourceTypeEnum, AllianceSourceTypeEnum, HordeIconFileDataID, AllianceIconFileDataID, " "HordeGarrFollItemSetID, AllianceGarrFollItemSetID, HordeUITextureKitID, AllianceUITextureKitID, Vitality, HordeFlavorGarrStringID, " - "AllianceFlavorGarrStringID, HordeSlottingBroadcastTextID, AllySlottingBroadcastTextID, ChrClassID, Flags, Gender, AutoCombatantID, " - "CovenantID FROM garr_follower WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "AllianceFlavorGarrStringID, HordeSlottingBroadcastTextID, AllySlottingBroadcastTextID, ChrClassID, Flags, Gender FROM garr_follower" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_FOLLOWER, "SELECT MAX(ID) + 1 FROM garr_follower", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_GARR_FOLLOWER, "SELECT ID, HordeSourceText_lang, AllianceSourceText_lang, TitleName_lang FROM garr_follower_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -696,11 +661,11 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_FOLLOWER_X_ABILITY, "SELECT MAX(ID) + 1 FROM garr_follower_x_ability", CONNECTION_SYNCH); // GarrMission.db2 - PrepareStatement(HOTFIX_SEL_GARR_MISSION, "SELECT ID, Name, Location, Description, MapPosX, MapPosY, WorldPosX, WorldPosY, GarrTypeID, " + PrepareStatement(HOTFIX_SEL_GARR_MISSION, "SELECT Name, Location, Description, MapPosX, MapPosY, WorldPosX, WorldPosY, ID, GarrTypeID, " "GarrMissionTypeID, GarrFollowerTypeID, MaxFollowers, MissionCost, MissionCostCurrencyTypesID, OfferedGarrMissionTextureID, UiTextureKitID, " - "EnvGarrMechanicID, EnvGarrMechanicTypeID, PlayerConditionID, GarrMissionSetID, TargetLevel, TargetItemLevel, MissionDuration, " - "TravelDuration, OfferDuration, BaseCompletionChance, BaseFollowerXP, OvermaxRewardPackID, FollowerDeathChance, AreaID, Flags, " - "AutoMissionScalar, AutoMissionScalarCurveID, AutoCombatantEnvCasterID FROM garr_mission WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "EnvGarrMechanicID, EnvGarrMechanicTypeID, PlayerConditionID, TargetLevel, TargetItemLevel, MissionDuration, TravelDuration, OfferDuration, " + "BaseCompletionChance, BaseFollowerXP, OvermaxRewardPackID, FollowerDeathChance, AreaID, Flags, GarrMissionSetID FROM garr_mission" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_MISSION, "SELECT MAX(ID) + 1 FROM garr_mission", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_GARR_MISSION, "SELECT ID, Name_lang, Location_lang, Description_lang FROM garr_mission_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -729,27 +694,22 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_SITE_LEVEL_PLOT_INST, "SELECT MAX(ID) + 1 FROM garr_site_level_plot_inst", CONNECTION_SYNCH); // GarrTalentTree.db2 - PrepareStatement(HOTFIX_SEL_GARR_TALENT_TREE, "SELECT ID, Name, GarrTypeID, ClassID, MaxTiers, UiOrder, Flags, UiTextureKitID, " - "GarrTalentTreeType, PlayerConditionID, FeatureTypeIndex, FeatureSubtypeIndex, CurrencyID FROM garr_talent_tree" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_GARR_TALENT_TREE, "SELECT ID, Name, GarrTypeID, ClassID, MaxTiers, UiOrder, Flags, UiTextureKitID" + " FROM garr_talent_tree WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GARR_TALENT_TREE, "SELECT MAX(ID) + 1 FROM garr_talent_tree", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_GARR_TALENT_TREE, "SELECT ID, Name_lang FROM garr_talent_tree_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // GemProperties.db2 - PrepareStatement(HOTFIX_SEL_GEM_PROPERTIES, "SELECT ID, EnchantId, Type FROM gem_properties WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_GEM_PROPERTIES, "SELECT ID, EnchantId, Type, MinItemLevel FROM gem_properties WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GEM_PROPERTIES, "SELECT MAX(ID) + 1 FROM gem_properties", CONNECTION_SYNCH); - // GlobalCurve.db2 - PrepareStatement(HOTFIX_SEL_GLOBAL_CURVE, "SELECT ID, CurveID, Type FROM global_curve WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_GLOBAL_CURVE, "SELECT MAX(ID) + 1 FROM global_curve", CONNECTION_SYNCH); - // GlyphBindableSpell.db2 PrepareStatement(HOTFIX_SEL_GLYPH_BINDABLE_SPELL, "SELECT ID, SpellID, GlyphPropertiesID FROM glyph_bindable_spell WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GLYPH_BINDABLE_SPELL, "SELECT MAX(ID) + 1 FROM glyph_bindable_spell", CONNECTION_SYNCH); // GlyphProperties.db2 - PrepareStatement(HOTFIX_SEL_GLYPH_PROPERTIES, "SELECT ID, SpellID, GlyphType, GlyphExclusiveCategoryID, SpellIconFileDataID FROM glyph_properties" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_GLYPH_PROPERTIES, "SELECT ID, SpellID, GlyphType, GlyphExclusiveCategoryID, SpellIconFileDataID, GlyphSlotFlags" + " FROM glyph_properties WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GLYPH_PROPERTIES, "SELECT MAX(ID) + 1 FROM glyph_properties", CONNECTION_SYNCH); // GlyphRequiredSpec.db2 @@ -758,9 +718,9 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_GLYPH_REQUIRED_SPEC, "SELECT MAX(ID) + 1 FROM glyph_required_spec", CONNECTION_SYNCH); // GossipNpcOption.db2 - PrepareStatement(HOTFIX_SEL_GOSSIP_NPC_OPTION, "SELECT ID, GossipNpcOption, LFGDungeonsID, TrainerID, GarrFollowerTypeID, CharShipmentID, " - "GarrTalentTreeID, UiMapID, UiItemInteractionID, Unknown_1000_8, Unknown_1000_9, CovenantID, GossipOptionID, TraitTreeID, ProfessionID, " - "Unknown_1002_14 FROM gossip_npc_option WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_GOSSIP_NPC_OPTION, "SELECT ID, GossipNpcOption, LFGDungeonsID, Field34146722002, Field34146722003, Field34146722004, " + "Field34146722005, Field34146722006, Field34146722007, Field34146722008, Field34146722009, Field34146722010, GossipOptionID" + " FROM gossip_npc_option WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_GOSSIP_NPC_OPTION, "SELECT MAX(ID) + 1 FROM gossip_npc_option", CONNECTION_SYNCH); // GuildColorBackground.db2 @@ -789,11 +749,10 @@ void HotfixDatabaseConnection::DoPrepareStatements() // Holidays.db2 PrepareStatement(HOTFIX_SEL_HOLIDAYS, "SELECT ID, Region, Looping, HolidayNameID, HolidayDescriptionID, Priority, CalendarFilterType, Flags, " - "Duration1, Duration2, Duration3, Duration4, Duration5, Duration6, Duration7, Duration8, Duration9, Duration10, Date1, Date2, Date3, Date4, " - "Date5, Date6, Date7, Date8, Date9, Date10, Date11, Date12, Date13, Date14, Date15, Date16, Date17, Date18, Date19, Date20, Date21, Date22, " - "Date23, Date24, Date25, Date26, CalendarFlags1, CalendarFlags2, CalendarFlags3, CalendarFlags4, CalendarFlags5, CalendarFlags6, " - "CalendarFlags7, CalendarFlags8, CalendarFlags9, CalendarFlags10, TextureFileDataID1, TextureFileDataID2, TextureFileDataID3 FROM holidays" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "WorldStateExpressionID, Duration1, Duration2, Duration3, Duration4, Duration5, Duration6, Duration7, Duration8, Duration9, Duration10, " + "Date1, Date2, Date3, Date4, Date5, Date6, Date7, Date8, Date9, Date10, Date11, Date12, Date13, Date14, Date15, Date16, CalendarFlags1, " + "CalendarFlags2, CalendarFlags3, CalendarFlags4, CalendarFlags5, CalendarFlags6, CalendarFlags7, CalendarFlags8, CalendarFlags9, " + "CalendarFlags10, TextureFileDataID1, TextureFileDataID2, TextureFileDataID3 FROM holidays WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_HOLIDAYS, "SELECT MAX(ID) + 1 FROM holidays", CONNECTION_SYNCH); // ImportPriceArmor.db2 @@ -814,13 +773,16 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_IMPORT_PRICE_WEAPON, "SELECT MAX(ID) + 1 FROM import_price_weapon", CONNECTION_SYNCH); // Item.db2 - PrepareStatement(HOTFIX_SEL_ITEM, "SELECT ID, ClassID, SubclassID, Material, InventoryType, SheatheType, SoundOverrideSubclassID, IconFileDataID, " - "ItemGroupSoundsID, ContentTuningID, ModifiedCraftingReagentItemID, CraftingQualityID FROM item WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_ITEM, "SELECT ID, ClassID, SubclassID, Material, InventoryType, RequiredLevel, SheatheType, RandomSelect, " + "ItemRandomSuffixGroupID, SoundOverrideSubclassID, ScalingStatDistributionID, IconFileDataID, ItemGroupSoundsID, ContentTuningID, " + "MaxDurability, AmmunitionType, ScalingStatValue, DamageType1, DamageType2, DamageType3, DamageType4, DamageType5, Resistances1, " + "Resistances2, Resistances3, Resistances4, Resistances5, Resistances6, Resistances7, MinDamage1, MinDamage2, MinDamage3, MinDamage4, " + "MinDamage5, MaxDamage1, MaxDamage2, MaxDamage3, MaxDamage4, MaxDamage5 FROM item WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM, "SELECT MAX(ID) + 1 FROM item", CONNECTION_SYNCH); // ItemAppearance.db2 - PrepareStatement(HOTFIX_SEL_ITEM_APPEARANCE, "SELECT ID, DisplayType, ItemDisplayInfoID, DefaultIconFileDataID, UiOrder, PlayerConditionID" - " FROM item_appearance WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_ITEM_APPEARANCE, "SELECT ID, DisplayType, ItemDisplayInfoID, DefaultIconFileDataID, UiOrder FROM item_appearance" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_APPEARANCE, "SELECT MAX(ID) + 1 FROM item_appearance", CONNECTION_SYNCH); // ItemArmorQuality.db2 @@ -848,28 +810,18 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_BONUS, "SELECT MAX(ID) + 1 FROM item_bonus", CONNECTION_SYNCH); - // ItemBonusListGroupEntry.db2 - PrepareStatement(HOTFIX_SEL_ITEM_BONUS_LIST_GROUP_ENTRY, "SELECT ID, ItemBonusListGroupID, ItemBonusListID, ItemLevelSelectorID, SequenceValue, " - "ItemExtendedCostID, PlayerConditionID, Flags, ItemLogicalCostGroupID FROM item_bonus_list_group_entry WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_BONUS_LIST_GROUP_ENTRY, "SELECT MAX(ID) + 1 FROM item_bonus_list_group_entry", CONNECTION_SYNCH); - // ItemBonusListLevelDelta.db2 PrepareStatement(HOTFIX_SEL_ITEM_BONUS_LIST_LEVEL_DELTA, "SELECT ItemLevelDelta, ID FROM item_bonus_list_level_delta" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_BONUS_LIST_LEVEL_DELTA, "SELECT MAX(ID) + 1 FROM item_bonus_list_level_delta", CONNECTION_SYNCH); - // ItemBonusTree.db2 - PrepareStatement(HOTFIX_SEL_ITEM_BONUS_TREE, "SELECT ID, Flags, InventoryTypeSlotMask FROM item_bonus_tree WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_BONUS_TREE, "SELECT MAX(ID) + 1 FROM item_bonus_tree", CONNECTION_SYNCH); - // ItemBonusTreeNode.db2 PrepareStatement(HOTFIX_SEL_ITEM_BONUS_TREE_NODE, "SELECT ID, ItemContext, ChildItemBonusTreeID, ChildItemBonusListID, ChildItemLevelSelectorID, " - "ChildItemBonusListGroupID, IblGroupPointsModSetID, MinMythicPlusLevel, MaxMythicPlusLevel, ParentItemBonusTreeID FROM item_bonus_tree_node" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ParentItemBonusTreeID FROM item_bonus_tree_node WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_BONUS_TREE_NODE, "SELECT MAX(ID) + 1 FROM item_bonus_tree_node", CONNECTION_SYNCH); // ItemChildEquipment.db2 - PrepareStatement(HOTFIX_SEL_ITEM_CHILD_EQUIPMENT, "SELECT ID, ParentItemID, ChildItemID, ChildItemEquipSlot FROM item_child_equipment" + PrepareStatement(HOTFIX_SEL_ITEM_CHILD_EQUIPMENT, "SELECT ID, ChildItemID, ChildItemEquipSlot, ParentItemID FROM item_child_equipment" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_CHILD_EQUIPMENT, "SELECT MAX(ID) + 1 FROM item_child_equipment", CONNECTION_SYNCH); @@ -879,7 +831,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_ITEM_CLASS, "SELECT ID, ClassName_lang FROM item_class_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // ItemContextPickerEntry.db2 - PrepareStatement(HOTFIX_SEL_ITEM_CONTEXT_PICKER_ENTRY, "SELECT ID, ItemCreationContext, OrderIndex, PVal, LabelID, Flags, PlayerConditionID, " + PrepareStatement(HOTFIX_SEL_ITEM_CONTEXT_PICKER_ENTRY, "SELECT ID, ItemCreationContext, OrderIndex, PVal, Flags, PlayerConditionID, " "ItemContextPickerID FROM item_context_picker_entry WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_CONTEXT_PICKER_ENTRY, "SELECT MAX(ID) + 1 FROM item_context_picker_entry", CONNECTION_SYNCH); @@ -919,7 +871,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // ItemEffect.db2 PrepareStatement(HOTFIX_SEL_ITEM_EFFECT, "SELECT ID, LegacySlotIndex, TriggerType, Charges, CoolDownMSec, CategoryCoolDownMSec, SpellCategoryID, " - "SpellID, ChrSpecializationID FROM item_effect WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "SpellID, ChrSpecializationID, ParentItemID FROM item_effect WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_EFFECT, "SELECT MAX(ID) + 1 FROM item_effect", CONNECTION_SYNCH); // ItemExtendedCost.db2 @@ -930,8 +882,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_EXTENDED_COST, "SELECT MAX(ID) + 1 FROM item_extended_cost", CONNECTION_SYNCH); // ItemLevelSelector.db2 - PrepareStatement(HOTFIX_SEL_ITEM_LEVEL_SELECTOR, "SELECT ID, MinItemLevel, ItemLevelSelectorQualitySetID, AzeriteUnlockMappingSet" - " FROM item_level_selector WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_ITEM_LEVEL_SELECTOR, "SELECT ID, MinItemLevel, ItemLevelSelectorQualitySetID FROM item_level_selector" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_LEVEL_SELECTOR, "SELECT MAX(ID) + 1 FROM item_level_selector", CONNECTION_SYNCH); // ItemLevelSelectorQuality.db2 @@ -976,7 +928,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_PRICE_BASE, "SELECT MAX(ID) + 1 FROM item_price_base", CONNECTION_SYNCH); // ItemSearchName.db2 - PrepareStatement(HOTFIX_SEL_ITEM_SEARCH_NAME, "SELECT ID, AllowableRace, Display, OverallQualityID, ExpansionID, MinFactionID, MinReputation, " + PrepareStatement(HOTFIX_SEL_ITEM_SEARCH_NAME, "SELECT AllowableRace, Display, ID, OverallQualityID, ExpansionID, MinFactionID, MinReputation, " "AllowableClass, RequiredLevel, RequiredSkill, RequiredSkillRank, RequiredAbility, ItemLevel, Flags1, Flags2, Flags3, Flags4" " FROM item_search_name WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_SEARCH_NAME, "SELECT MAX(ID) + 1 FROM item_search_name", CONNECTION_SYNCH); @@ -996,20 +948,24 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_SET_SPELL, "SELECT MAX(ID) + 1 FROM item_set_spell", CONNECTION_SYNCH); // ItemSparse.db2 - PrepareStatement(HOTFIX_SEL_ITEM_SPARSE, "SELECT ID, AllowableRace, Description, Display3, Display2, Display1, Display, ExpansionID, DmgVariance, " - "LimitCategory, DurationInInventory, QualityModifier, BagFamily, StartQuestID, LanguageID, ItemRange, StatPercentageOfSocket1, " - "StatPercentageOfSocket2, StatPercentageOfSocket3, StatPercentageOfSocket4, StatPercentageOfSocket5, StatPercentageOfSocket6, " - "StatPercentageOfSocket7, StatPercentageOfSocket8, StatPercentageOfSocket9, StatPercentageOfSocket10, StatPercentEditor1, StatPercentEditor2, " - "StatPercentEditor3, StatPercentEditor4, StatPercentEditor5, StatPercentEditor6, StatPercentEditor7, StatPercentEditor8, StatPercentEditor9, " - "StatPercentEditor10, Stackable, MaxCount, MinReputation, RequiredAbility, SellPrice, BuyPrice, VendorStackCount, PriceVariance, " - "PriceRandomValue, Flags1, Flags2, Flags3, Flags4, FactionRelated, ModifiedCraftingReagentItemID, ContentTuningID, " - "PlayerLevelToItemLevelCurveID, ItemNameDescriptionID, RequiredTransmogHoliday, RequiredHoliday, GemProperties, SocketMatchEnchantmentId, " - "TotemCategoryID, InstanceBound, ZoneBound1, ZoneBound2, ItemSet, LockID, PageID, ItemDelay, MinFactionID, RequiredSkillRank, RequiredSkill, " - "ItemLevel, AllowableClass, ArtifactID, SpellWeight, SpellWeightCategory, SocketType1, SocketType2, SocketType3, SheatheType, Material, " - "PageMaterialID, Bonding, DamageDamageType, StatModifierBonusStat1, StatModifierBonusStat2, StatModifierBonusStat3, StatModifierBonusStat4, " - "StatModifierBonusStat5, StatModifierBonusStat6, StatModifierBonusStat7, StatModifierBonusStat8, StatModifierBonusStat9, " - "StatModifierBonusStat10, ContainerSlots, RequiredPVPMedal, RequiredPVPRank, RequiredLevel, InventoryType, OverallQualityID FROM item_sparse" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_ITEM_SPARSE, "SELECT ID, AllowableRace, Description, Display3, Display2, Display1, Display, DmgVariance, " + "DurationInInventory, QualityModifier, BagFamily, StartQuestID, ItemRange, StatPercentageOfSocket1, StatPercentageOfSocket2, " + "StatPercentageOfSocket3, StatPercentageOfSocket4, StatPercentageOfSocket5, StatPercentageOfSocket6, StatPercentageOfSocket7, " + "StatPercentageOfSocket8, StatPercentageOfSocket9, StatPercentageOfSocket10, StatPercentEditor1, StatPercentEditor2, StatPercentEditor3, " + "StatPercentEditor4, StatPercentEditor5, StatPercentEditor6, StatPercentEditor7, StatPercentEditor8, StatPercentEditor9, StatPercentEditor10, " + "Stackable, MaxCount, MinReputation, RequiredAbility, SellPrice, BuyPrice, VendorStackCount, PriceVariance, PriceRandomValue, Flags1, Flags2, " + "Flags3, Flags4, FactionRelated, ModifiedCraftingReagentItemID, ContentTuningID, PlayerLevelToItemLevelCurveID, MaxDurability, " + "ItemNameDescriptionID, RequiredTransmogHoliday, RequiredHoliday, LimitCategory, GemProperties, SocketMatchEnchantmentId, TotemCategoryID, " + "InstanceBound, ZoneBound1, ZoneBound2, ItemSet, LockID, PageID, ItemDelay, MinFactionID, RequiredSkillRank, RequiredSkill, ItemLevel, " + "AllowableClass, ItemRandomSuffixGroupID, RandomSelect, MinDamage1, MinDamage2, MinDamage3, MinDamage4, MinDamage5, MaxDamage1, MaxDamage2, " + "MaxDamage3, MaxDamage4, MaxDamage5, Resistances1, Resistances2, Resistances3, Resistances4, Resistances5, Resistances6, Resistances7, " + "ScalingStatDistributionID, StatModifierBonusAmount1, StatModifierBonusAmount2, StatModifierBonusAmount3, StatModifierBonusAmount4, " + "StatModifierBonusAmount5, StatModifierBonusAmount6, StatModifierBonusAmount7, StatModifierBonusAmount8, StatModifierBonusAmount9, " + "StatModifierBonusAmount10, ExpansionID, ArtifactID, SpellWeight, SpellWeightCategory, SocketType1, SocketType2, SocketType3, SheatheType, " + "Material, PageMaterialID, LanguageID, Bonding, DamageDamageType, StatModifierBonusStat1, StatModifierBonusStat2, StatModifierBonusStat3, " + "StatModifierBonusStat4, StatModifierBonusStat5, StatModifierBonusStat6, StatModifierBonusStat7, StatModifierBonusStat8, " + "StatModifierBonusStat9, StatModifierBonusStat10, ContainerSlots, RequiredPVPMedal, RequiredPVPRank, InventoryType, OverallQualityID, " + "AmmunitionType, RequiredLevel FROM item_sparse WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_SPARSE, "SELECT MAX(ID) + 1 FROM item_sparse", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_ITEM_SPARSE, "SELECT ID, Description_lang, Display3_lang, Display2_lang, Display1_lang, Display_lang" " FROM item_sparse_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1027,13 +983,9 @@ void HotfixDatabaseConnection::DoPrepareStatements() PrepareStatement(HOTFIX_SEL_ITEM_X_BONUS_TREE, "SELECT ID, ItemBonusTreeID, ItemID FROM item_x_bonus_tree WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_X_BONUS_TREE, "SELECT MAX(ID) + 1 FROM item_x_bonus_tree", CONNECTION_SYNCH); - // ItemXItemEffect.db2 - PrepareStatement(HOTFIX_SEL_ITEM_X_ITEM_EFFECT, "SELECT ID, ItemEffectID, ItemID FROM item_x_item_effect WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_ITEM_X_ITEM_EFFECT, "SELECT MAX(ID) + 1 FROM item_x_item_effect", CONNECTION_SYNCH); - // JournalEncounter.db2 - PrepareStatement(HOTFIX_SEL_JOURNAL_ENCOUNTER, "SELECT Name, Description, MapX, MapY, ID, JournalInstanceID, DungeonEncounterID, OrderIndex, " - "FirstSectionID, UiMapID, MapDisplayConditionID, Flags, DifficultyMask FROM journal_encounter WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_JOURNAL_ENCOUNTER, "SELECT ID, Name, Description, MapX, MapY, JournalInstanceID, OrderIndex, FirstSectionID, UiMapID, " + "MapDisplayConditionID, Flags, DifficultyMask FROM journal_encounter WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_JOURNAL_ENCOUNTER, "SELECT MAX(ID) + 1 FROM journal_encounter", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_JOURNAL_ENCOUNTER, "SELECT ID, Name_lang, Description_lang FROM journal_encounter_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1047,14 +999,14 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // JournalInstance.db2 - PrepareStatement(HOTFIX_SEL_JOURNAL_INSTANCE, "SELECT ID, Name, Description, MapID, BackgroundFileDataID, ButtonFileDataID, " + PrepareStatement(HOTFIX_SEL_JOURNAL_INSTANCE, "SELECT Name, Description, ID, MapID, BackgroundFileDataID, ButtonFileDataID, " "ButtonSmallFileDataID, LoreFileDataID, Flags, AreaID FROM journal_instance WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_JOURNAL_INSTANCE, "SELECT MAX(ID) + 1 FROM journal_instance", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_JOURNAL_INSTANCE, "SELECT ID, Name_lang, Description_lang FROM journal_instance_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // JournalTier.db2 - PrepareStatement(HOTFIX_SEL_JOURNAL_TIER, "SELECT ID, Name, PlayerConditionID FROM journal_tier WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_JOURNAL_TIER, "SELECT ID, Name FROM journal_tier WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_JOURNAL_TIER, "SELECT MAX(ID) + 1 FROM journal_tier", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_JOURNAL_TIER, "SELECT ID, Name_lang FROM journal_tier_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1081,10 +1033,11 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_LANGUAGES, "SELECT ID, Name_lang FROM languages_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // LfgDungeons.db2 - PrepareStatement(HOTFIX_SEL_LFG_DUNGEONS, "SELECT ID, Name, Description, TypeID, Subtype, Faction, IconTextureFileID, RewardsBgTextureFileID, " - "PopupBgTextureFileID, ExpansionLevel, MapID, DifficultyID, MinGear, GroupID, OrderIndex, RequiredPlayerConditionId, RandomID, ScenarioID, " - "FinalEncounterID, CountTank, CountHealer, CountDamage, MinCountTank, MinCountHealer, MinCountDamage, BonusReputationAmount, MentorItemLevel, " - "MentorCharLevel, ContentTuningID, Flags1, Flags2 FROM lfg_dungeons WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_LFG_DUNGEONS, "SELECT ID, Name, Description, MinLevel, MaxLevel, TypeID, Subtype, Faction, IconTextureFileID, " + "RewardsBgTextureFileID, PopupBgTextureFileID, ExpansionLevel, MapID, DifficultyID, MinGear, GroupID, OrderIndex, RequiredPlayerConditionId, " + "TargetLevel, TargetLevelMin, TargetLevelMax, RandomID, ScenarioID, FinalEncounterID, CountTank, CountHealer, CountDamage, MinCountTank, " + "MinCountHealer, MinCountDamage, BonusReputationAmount, MentorItemLevel, MentorCharLevel, Flags1, Flags2 FROM lfg_dungeons" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_LFG_DUNGEONS, "SELECT MAX(ID) + 1 FROM lfg_dungeons", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_LFG_DUNGEONS, "SELECT ID, Name_lang, Description_lang FROM lfg_dungeons_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -1105,8 +1058,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_LIQUID_TYPE, "SELECT MAX(ID) + 1 FROM liquid_type", CONNECTION_SYNCH); // Lock.db2 - PrepareStatement(HOTFIX_SEL_LOCK, "SELECT ID, Flags, Index1, Index2, Index3, Index4, Index5, Index6, Index7, Index8, Skill1, Skill2, Skill3, " - "Skill4, Skill5, Skill6, Skill7, Skill8, Type1, Type2, Type3, Type4, Type5, Type6, Type7, Type8, Action1, Action2, Action3, Action4, Action5, " + PrepareStatement(HOTFIX_SEL_LOCK, "SELECT ID, Index1, Index2, Index3, Index4, Index5, Index6, Index7, Index8, Skill1, Skill2, Skill3, Skill4, " + "Skill5, Skill6, Skill7, Skill8, Type1, Type2, Type3, Type4, Type5, Type6, Type7, Type8, Action1, Action2, Action3, Action4, Action5, " "Action6, Action7, Action8 FROM `lock` WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_LOCK, "SELECT MAX(ID) + 1 FROM `lock`", CONNECTION_SYNCH); @@ -1117,9 +1070,9 @@ void HotfixDatabaseConnection::DoPrepareStatements() // Map.db2 PrepareStatement(HOTFIX_SEL_MAP, "SELECT ID, Directory, MapName, MapDescription0, MapDescription1, PvpShortDescription, PvpLongDescription, " - "CorpseX, CorpseY, MapType, InstanceType, ExpansionID, AreaTableID, LoadingScreenID, TimeOfDayOverride, ParentMapID, CosmeticParentMapID, " - "TimeOffset, MinimapIconScale, CorpseMapID, MaxPlayers, WindSettingsID, ZmpFileDataID, WdtFileDataID, NavigationMaxDistance, Flags1, Flags2, " - "Flags3 FROM map WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "MapType, InstanceType, ExpansionID, AreaTableID, LoadingScreenID, TimeOfDayOverride, ParentMapID, CosmeticParentMapID, TimeOffset, " + "MinimapIconScale, RaidOffset, CorpseMapID, MaxPlayers, WindSettingsID, ZmpFileDataID, Flags1, Flags2, Flags3 FROM map" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_MAP, "SELECT MAX(ID) + 1 FROM map", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_MAP, "SELECT ID, MapName_lang, MapDescription0_lang, MapDescription1_lang, PvpShortDescription_lang, " "PvpLongDescription_lang FROM map_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1132,8 +1085,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() " AND locale = ?", CONNECTION_SYNCH); // MapDifficulty.db2 - PrepareStatement(HOTFIX_SEL_MAP_DIFFICULTY, "SELECT ID, Message, DifficultyID, LockID, ResetInterval, MaxPlayers, ItemContext, " - "ItemContextPickerID, Flags, ContentTuningID, MapID FROM map_difficulty WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_MAP_DIFFICULTY, "SELECT ID, Message, ItemContextPickerID, ContentTuningID, DifficultyID, LockID, ResetInterval, " + "MaxPlayers, ItemContext, Flags, MapID FROM map_difficulty WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_MAP_DIFFICULTY, "SELECT MAX(ID) + 1 FROM map_difficulty", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_MAP_DIFFICULTY, "SELECT ID, Message_lang FROM map_difficulty_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1144,10 +1097,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_MAP_DIFFICULTY_X_CONDITION, "SELECT ID, FailureDescription_lang FROM map_difficulty_x_condition_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); - // MawPower.db2 - PrepareStatement(HOTFIX_SEL_MAW_POWER, "SELECT ID, SpellID, MawPowerRarityID FROM maw_power WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_MAW_POWER, "SELECT MAX(ID) + 1 FROM maw_power", CONNECTION_SYNCH); - // ModifierTree.db2 PrepareStatement(HOTFIX_SEL_MODIFIER_TREE, "SELECT ID, Parent, Operator, Amount, Type, Asset, SecondaryAsset, TertiaryAsset FROM modifier_tree" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); @@ -1155,15 +1104,14 @@ void HotfixDatabaseConnection::DoPrepareStatements() // Mount.db2 PrepareStatement(HOTFIX_SEL_MOUNT, "SELECT Name, SourceText, Description, ID, MountTypeID, Flags, SourceTypeEnum, SourceSpellID, " - "PlayerConditionID, MountFlyRideHeight, UiModelSceneID, MountSpecialRiderAnimKitID, MountSpecialSpellVisualKitID FROM mount" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "PlayerConditionID, MountFlyRideHeight, UiModelSceneID FROM mount WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_MOUNT, "SELECT MAX(ID) + 1 FROM mount", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_MOUNT, "SELECT ID, Name_lang, SourceText_lang, Description_lang FROM mount_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); // MountCapability.db2 PrepareStatement(HOTFIX_SEL_MOUNT_CAPABILITY, "SELECT ID, Flags, ReqRidingSkill, ReqAreaID, ReqSpellAuraID, ReqSpellKnownID, ModSpellAuraID, " - "ReqMapID, PlayerConditionID, FlightCapabilityID FROM mount_capability WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ReqMapID FROM mount_capability WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_MOUNT_CAPABILITY, "SELECT MAX(ID) + 1 FROM mount_capability", CONNECTION_SYNCH); // MountTypeXCapability.db2 @@ -1177,8 +1125,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_MOUNT_X_DISPLAY, "SELECT MAX(ID) + 1 FROM mount_x_display", CONNECTION_SYNCH); // Movie.db2 - PrepareStatement(HOTFIX_SEL_MOVIE, "SELECT ID, Volume, KeyID, AudioFileDataID, SubtitleFileDataID, SubtitleFileFormat FROM movie" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_MOVIE, "SELECT ID, Volume, KeyID, AudioFileDataID, SubtitleFileDataID FROM movie WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_MOVIE, "SELECT MAX(ID) + 1 FROM movie", CONNECTION_SYNCH); // MythicPlusSeason.db2 @@ -1226,25 +1173,23 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_PHASE_X_PHASE_GROUP, "SELECT MAX(ID) + 1 FROM phase_x_phase_group", CONNECTION_SYNCH); // PlayerCondition.db2 - PrepareStatement(HOTFIX_SEL_PLAYER_CONDITION, "SELECT ID, RaceMask, FailureDescription, ClassMask, SkillLogic, LanguageID, MinLanguage, " - "MaxLanguage, MaxFactionID, MaxReputation, ReputationLogic, CurrentPvpFaction, PvpMedal, PrevQuestLogic, CurrQuestLogic, " + PrepareStatement(HOTFIX_SEL_PLAYER_CONDITION, "SELECT RaceMask, FailureDescription, ID, MinLevel, MaxLevel, ClassMask, SkillLogic, LanguageID, " + "MinLanguage, MaxLanguage, MaxFactionID, MaxReputation, ReputationLogic, CurrentPvpFaction, PvpMedal, PrevQuestLogic, CurrQuestLogic, " "CurrentCompletedQuestLogic, SpellLogic, ItemLogic, ItemFlags, AuraSpellLogic, WorldStateExpressionID, WeatherID, PartyStatus, " "LifetimeMaxPVPRank, AchievementLogic, Gender, NativeGender, AreaLogic, LfgLogic, CurrencyLogic, QuestKillID, QuestKillLogic, " "MinExpansionLevel, MaxExpansionLevel, MinAvgItemLevel, MaxAvgItemLevel, MinAvgEquippedItemLevel, MaxAvgEquippedItemLevel, PhaseUseFlags, " "PhaseID, PhaseGroupID, Flags, ChrSpecializationIndex, ChrSpecializationRole, ModifierTreeID, PowerType, PowerTypeComp, PowerTypeValue, " - "WeaponSubclassMask, MaxGuildLevel, MinGuildLevel, MaxExpansionTier, MinExpansionTier, MinPVPRank, MaxPVPRank, ContentTuningID, CovenantID, " - "TraitNodeEntryLogic, SkillID1, SkillID2, SkillID3, SkillID4, MinSkill1, MinSkill2, MinSkill3, MinSkill4, MaxSkill1, MaxSkill2, MaxSkill3, " - "MaxSkill4, MinFactionID1, MinFactionID2, MinFactionID3, MinReputation1, MinReputation2, MinReputation3, PrevQuestID1, PrevQuestID2, " - "PrevQuestID3, PrevQuestID4, CurrQuestID1, CurrQuestID2, CurrQuestID3, CurrQuestID4, CurrentCompletedQuestID1, CurrentCompletedQuestID2, " - "CurrentCompletedQuestID3, CurrentCompletedQuestID4, SpellID1, SpellID2, SpellID3, SpellID4, ItemID1, ItemID2, ItemID3, ItemID4, ItemCount1, " - "ItemCount2, ItemCount3, ItemCount4, Explored1, Explored2, Time1, Time2, AuraSpellID1, AuraSpellID2, AuraSpellID3, AuraSpellID4, AuraStacks1, " - "AuraStacks2, AuraStacks3, AuraStacks4, Achievement1, Achievement2, Achievement3, Achievement4, AreaID1, AreaID2, AreaID3, AreaID4, " - "LfgStatus1, LfgStatus2, LfgStatus3, LfgStatus4, LfgCompare1, LfgCompare2, LfgCompare3, LfgCompare4, LfgValue1, LfgValue2, LfgValue3, " - "LfgValue4, CurrencyID1, CurrencyID2, CurrencyID3, CurrencyID4, CurrencyCount1, CurrencyCount2, CurrencyCount3, CurrencyCount4, " - "QuestKillMonster1, QuestKillMonster2, QuestKillMonster3, QuestKillMonster4, QuestKillMonster5, QuestKillMonster6, MovementFlags1, " - "MovementFlags2, TraitNodeEntryID1, TraitNodeEntryID2, TraitNodeEntryID3, TraitNodeEntryID4, TraitNodeEntryMinRank1, TraitNodeEntryMinRank2, " - "TraitNodeEntryMinRank3, TraitNodeEntryMinRank4, TraitNodeEntryMaxRank1, TraitNodeEntryMaxRank2, TraitNodeEntryMaxRank3, " - "TraitNodeEntryMaxRank4 FROM player_condition WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "WeaponSubclassMask, MaxGuildLevel, MinGuildLevel, MaxExpansionTier, MinExpansionTier, MinPVPRank, MaxPVPRank, SkillID1, SkillID2, SkillID3, " + "SkillID4, MinSkill1, MinSkill2, MinSkill3, MinSkill4, MaxSkill1, MaxSkill2, MaxSkill3, MaxSkill4, MinFactionID1, MinFactionID2, " + "MinFactionID3, MinReputation1, MinReputation2, MinReputation3, PrevQuestID1, PrevQuestID2, PrevQuestID3, PrevQuestID4, CurrQuestID1, " + "CurrQuestID2, CurrQuestID3, CurrQuestID4, CurrentCompletedQuestID1, CurrentCompletedQuestID2, CurrentCompletedQuestID3, " + "CurrentCompletedQuestID4, SpellID1, SpellID2, SpellID3, SpellID4, ItemID1, ItemID2, ItemID3, ItemID4, ItemCount1, ItemCount2, ItemCount3, " + "ItemCount4, Explored1, Explored2, Time1, Time2, AuraSpellID1, AuraSpellID2, AuraSpellID3, AuraSpellID4, AuraStacks1, AuraStacks2, " + "AuraStacks3, AuraStacks4, Achievement1, Achievement2, Achievement3, Achievement4, AreaID1, AreaID2, AreaID3, AreaID4, LfgStatus1, " + "LfgStatus2, LfgStatus3, LfgStatus4, LfgCompare1, LfgCompare2, LfgCompare3, LfgCompare4, LfgValue1, LfgValue2, LfgValue3, LfgValue4, " + "CurrencyID1, CurrencyID2, CurrencyID3, CurrencyID4, CurrencyCount1, CurrencyCount2, CurrencyCount3, CurrencyCount4, QuestKillMonster1, " + "QuestKillMonster2, QuestKillMonster3, QuestKillMonster4, QuestKillMonster5, QuestKillMonster6, MovementFlags1, MovementFlags2" + " FROM player_condition WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_PLAYER_CONDITION, "SELECT MAX(ID) + 1 FROM player_condition", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_PLAYER_CONDITION, "SELECT ID, FailureDescription_lang FROM player_condition_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -1255,7 +1200,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_POWER_DISPLAY, "SELECT MAX(ID) + 1 FROM power_display", CONNECTION_SYNCH); // PowerType.db2 - PrepareStatement(HOTFIX_SEL_POWER_TYPE, "SELECT NameGlobalStringTag, CostGlobalStringTag, ID, PowerTypeEnum, MinPower, MaxBasePower, CenterPower, " + PrepareStatement(HOTFIX_SEL_POWER_TYPE, "SELECT ID, NameGlobalStringTag, CostGlobalStringTag, PowerTypeEnum, MinPower, MaxBasePower, CenterPower, " "DefaultPower, DisplayModifier, RegenInterruptTimeMS, RegenPeace, RegenCombat, Flags FROM power_type WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_POWER_TYPE, "SELECT MAX(ID) + 1 FROM power_type", CONNECTION_SYNCH); @@ -1281,7 +1226,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // PvpTalent.db2 PrepareStatement(HOTFIX_SEL_PVP_TALENT, "SELECT Description, ID, SpecID, SpellID, OverridesSpellID, Flags, ActionBarSpellID, PvpTalentCategoryID, " - "LevelRequired, PlayerConditionID FROM pvp_talent WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "LevelRequired FROM pvp_talent WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_PVP_TALENT, "SELECT MAX(ID) + 1 FROM pvp_talent", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_PVP_TALENT, "SELECT ID, Description_lang FROM pvp_talent_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1295,7 +1240,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_PVP_TALENT_SLOT_UNLOCK, "SELECT MAX(ID) + 1 FROM pvp_talent_slot_unlock", CONNECTION_SYNCH); // PvpTier.db2 - PrepareStatement(HOTFIX_SEL_PVP_TIER, "SELECT Name, ID, MinRating, MaxRating, PrevTier, NextTier, BracketID, `Rank`, RankIconFileDataID" + PrepareStatement(HOTFIX_SEL_PVP_TIER, "SELECT ID, Name, MinRating, MaxRating, PrevTier, NextTier, BracketID, `Rank`, RankIconFileDataID" " FROM pvp_tier WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_PVP_TIER, "SELECT MAX(ID) + 1 FROM pvp_tier", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_PVP_TIER, "SELECT ID, Name_lang FROM pvp_tier_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1311,7 +1256,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_QUEST_INFO, "SELECT ID, InfoName_lang FROM quest_info_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // QuestLineXQuest.db2 - PrepareStatement(HOTFIX_SEL_QUEST_LINE_X_QUEST, "SELECT ID, QuestLineID, QuestID, OrderIndex, Flags FROM quest_line_x_quest" + PrepareStatement(HOTFIX_SEL_QUEST_LINE_X_QUEST, "SELECT ID, QuestLineID, QuestID, OrderIndex FROM quest_line_x_quest" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_QUEST_LINE_X_QUEST, "SELECT MAX(ID) + 1 FROM quest_line_x_quest", CONNECTION_SYNCH); @@ -1331,7 +1276,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_LOCALE_STMT(HOTFIX_SEL_QUEST_SORT, "SELECT ID, SortName_lang FROM quest_sort_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // QuestV2.db2 - PrepareStatement(HOTFIX_SEL_QUEST_V2, "SELECT ID, UniqueBitFlag, UiQuestDetailsTheme FROM quest_v2 WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_QUEST_V2, "SELECT ID, UniqueBitFlag FROM quest_v2 WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_QUEST_V2, "SELECT MAX(ID) + 1 FROM quest_v2", CONNECTION_SYNCH); // QuestXp.db2 @@ -1340,10 +1285,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_QUEST_XP, "SELECT MAX(ID) + 1 FROM quest_xp", CONNECTION_SYNCH); // RandPropPoints.db2 - PrepareStatement(HOTFIX_SEL_RAND_PROP_POINTS, "SELECT ID, DamageReplaceStatF, DamageSecondaryF, DamageReplaceStat, DamageSecondary, EpicF1, " - "EpicF2, EpicF3, EpicF4, EpicF5, SuperiorF1, SuperiorF2, SuperiorF3, SuperiorF4, SuperiorF5, GoodF1, GoodF2, GoodF3, GoodF4, GoodF5, Epic1, " - "Epic2, Epic3, Epic4, Epic5, Superior1, Superior2, Superior3, Superior4, Superior5, Good1, Good2, Good3, Good4, Good5 FROM rand_prop_points" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_RAND_PROP_POINTS, "SELECT ID, DamageReplaceStat, Epic1, Epic2, Epic3, Epic4, Epic5, Superior1, Superior2, Superior3, " + "Superior4, Superior5, Good1, Good2, Good3, Good4, Good5 FROM rand_prop_points WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_RAND_PROP_POINTS, "SELECT MAX(ID) + 1 FROM rand_prop_points", CONNECTION_SYNCH); // RewardPack.db2 @@ -1383,7 +1326,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SCENE_SCRIPT_GLOBAL_TEXT, "SELECT MAX(ID) + 1 FROM scene_script_global_text", CONNECTION_SYNCH); // SceneScriptPackage.db2 - PrepareStatement(HOTFIX_SEL_SCENE_SCRIPT_PACKAGE, "SELECT ID, Name, Unknown915 FROM scene_script_package WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SCENE_SCRIPT_PACKAGE, "SELECT ID, Name FROM scene_script_package WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SCENE_SCRIPT_PACKAGE, "SELECT MAX(ID) + 1 FROM scene_script_package", CONNECTION_SYNCH); // SceneScriptText.db2 @@ -1397,19 +1340,17 @@ void HotfixDatabaseConnection::DoPrepareStatements() // SkillLine.db2 PrepareStatement(HOTFIX_SEL_SKILL_LINE, "SELECT DisplayName, AlternateVerb, Description, HordeDisplayName, OverrideSourceInfoDisplayName, ID, " - "CategoryID, SpellIconFileID, CanLink, ParentSkillLineID, ParentTierIndex, Flags, SpellBookSpellID, ExpansionNameSharedStringID, " - "HordeExpansionNameSharedStringID FROM skill_line WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "CategoryID, SpellIconFileID, CanLink, ParentSkillLineID, ParentTierIndex, Flags, SpellBookSpellID FROM skill_line" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SKILL_LINE, "SELECT MAX(ID) + 1 FROM skill_line", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_SKILL_LINE, "SELECT ID, DisplayName_lang, AlternateVerb_lang, Description_lang, HordeDisplayName_lang" " FROM skill_line_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // SkillLineAbility.db2 - PrepareStatement(HOTFIX_SEL_SKILL_LINE_ABILITY, "SELECT RaceMask, AbilityVerb, AbilityAllVerb, ID, SkillLine, Spell, MinSkillLineRank, ClassMask, " - "SupercedesSpell, AcquireMethod, TrivialSkillLineRankHigh, TrivialSkillLineRankLow, Flags, NumSkillUps, UniqueBit, TradeSkillCategoryID, " - "SkillupSkillLineID FROM skill_line_ability WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SKILL_LINE_ABILITY, "SELECT RaceMask, ID, SkillLine, Spell, MinSkillLineRank, ClassMask, SupercedesSpell, " + "AcquireMethod, TrivialSkillLineRankHigh, TrivialSkillLineRankLow, Flags, NumSkillUps, UniqueBit, TradeSkillCategoryID, SkillupSkillLineID, " + "CharacterPoints1, CharacterPoints2 FROM skill_line_ability WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SKILL_LINE_ABILITY, "SELECT MAX(ID) + 1 FROM skill_line_ability", CONNECTION_SYNCH); - PREPARE_LOCALE_STMT(HOTFIX_SEL_SKILL_LINE_ABILITY, "SELECT ID, AbilityVerb_lang, AbilityAllVerb_lang FROM skill_line_ability_locale" - " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // SkillLineXTraitTree.db2 PrepareStatement(HOTFIX_SEL_SKILL_LINE_X_TRAIT_TREE, "SELECT ID, SkillLineID, TraitTreeID, OrderIndex FROM skill_line_x_trait_tree" @@ -1421,11 +1362,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() " FROM skill_race_class_info WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SKILL_RACE_CLASS_INFO, "SELECT MAX(ID) + 1 FROM skill_race_class_info", CONNECTION_SYNCH); - // SoulbindConduitRank.db2 - PrepareStatement(HOTFIX_SEL_SOULBIND_CONDUIT_RANK, "SELECT ID, RankIndex, SpellID, AuraPointsOverride, SoulbindConduitID" - " FROM soulbind_conduit_rank WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_SOULBIND_CONDUIT_RANK, "SELECT MAX(ID) + 1 FROM soulbind_conduit_rank", CONNECTION_SYNCH); - // SoundKit.db2 PrepareStatement(HOTFIX_SEL_SOUND_KIT, "SELECT ID, SoundType, VolumeFloat, Flags, MinDistance, DistanceCutoff, EAXDef, SoundKitAdvancedID, " "VolumeVariationPlus, VolumeVariationMinus, PitchVariationPlus, PitchVariationMinus, DialogType, PitchAdjust, BusOverwriteID, MaxInstances, " @@ -1450,12 +1386,12 @@ void HotfixDatabaseConnection::DoPrepareStatements() // SpellAuraRestrictions.db2 PrepareStatement(HOTFIX_SEL_SPELL_AURA_RESTRICTIONS, "SELECT ID, DifficultyID, CasterAuraState, TargetAuraState, ExcludeCasterAuraState, " - "ExcludeTargetAuraState, CasterAuraSpell, TargetAuraSpell, ExcludeCasterAuraSpell, ExcludeTargetAuraSpell, CasterAuraType, TargetAuraType, " - "ExcludeCasterAuraType, ExcludeTargetAuraType, SpellID FROM spell_aura_restrictions WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ExcludeTargetAuraState, CasterAuraSpell, TargetAuraSpell, ExcludeCasterAuraSpell, ExcludeTargetAuraSpell, SpellID" + " FROM spell_aura_restrictions WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_AURA_RESTRICTIONS, "SELECT MAX(ID) + 1 FROM spell_aura_restrictions", CONNECTION_SYNCH); // SpellCastTimes.db2 - PrepareStatement(HOTFIX_SEL_SPELL_CAST_TIMES, "SELECT ID, Base, Minimum FROM spell_cast_times WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_CAST_TIMES, "SELECT ID, Base, PerLevel, Minimum FROM spell_cast_times WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_CAST_TIMES, "SELECT MAX(ID) + 1 FROM spell_cast_times", CONNECTION_SYNCH); // SpellCastingRequirements.db2 @@ -1480,21 +1416,22 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_CLASS_OPTIONS, "SELECT MAX(ID) + 1 FROM spell_class_options", CONNECTION_SYNCH); // SpellCooldowns.db2 - PrepareStatement(HOTFIX_SEL_SPELL_COOLDOWNS, "SELECT ID, DifficultyID, CategoryRecoveryTime, RecoveryTime, StartRecoveryTime, AuraSpellID, " - "SpellID FROM spell_cooldowns WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_COOLDOWNS, "SELECT ID, DifficultyID, CategoryRecoveryTime, RecoveryTime, StartRecoveryTime, SpellID" + " FROM spell_cooldowns WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_COOLDOWNS, "SELECT MAX(ID) + 1 FROM spell_cooldowns", CONNECTION_SYNCH); // SpellDuration.db2 - PrepareStatement(HOTFIX_SEL_SPELL_DURATION, "SELECT ID, Duration, MaxDuration FROM spell_duration WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_DURATION, "SELECT ID, Duration, DurationPerLevel, MaxDuration FROM spell_duration" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_DURATION, "SELECT MAX(ID) + 1 FROM spell_duration", CONNECTION_SYNCH); // SpellEffect.db2 - PrepareStatement(HOTFIX_SEL_SPELL_EFFECT, "SELECT ID, EffectAura, DifficultyID, EffectIndex, Effect, EffectAmplitude, EffectAttributes, " - "EffectAuraPeriod, EffectBonusCoefficient, EffectChainAmplitude, EffectChainTargets, EffectItemType, EffectMechanic, EffectPointsPerResource, " - "EffectPosFacing, EffectRealPointsPerLevel, EffectTriggerSpell, BonusCoefficientFromAP, PvpMultiplier, Coefficient, Variance, " - "ResourceCoefficient, GroupSizeBasePointsCoefficient, EffectBasePoints, ScalingClass, EffectMiscValue1, EffectMiscValue2, EffectRadiusIndex1, " - "EffectRadiusIndex2, EffectSpellClassMask1, EffectSpellClassMask2, EffectSpellClassMask3, EffectSpellClassMask4, ImplicitTarget1, " - "ImplicitTarget2, SpellID FROM spell_effect WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_EFFECT, "SELECT ID, DifficultyID, EffectIndex, Effect, EffectAmplitude, EffectAttributes, EffectAura, " + "EffectAuraPeriod, EffectBasePoints, EffectBonusCoefficient, EffectChainAmplitude, EffectChainTargets, EffectDieSides, EffectItemType, " + "EffectMechanic, EffectPointsPerResource, EffectPosFacing, EffectRealPointsPerLevel, EffectTriggerSpell, BonusCoefficientFromAP, " + "PvpMultiplier, Coefficient, Variance, ResourceCoefficient, GroupSizeBasePointsCoefficient, EffectMiscValue1, EffectMiscValue2, " + "EffectRadiusIndex1, EffectRadiusIndex2, EffectSpellClassMask1, EffectSpellClassMask2, EffectSpellClassMask3, EffectSpellClassMask4, " + "ImplicitTarget1, ImplicitTarget2, SpellID FROM spell_effect WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_EFFECT, "SELECT MAX(ID) + 1 FROM spell_effect", CONNECTION_SYNCH); // SpellEquippedItems.db2 @@ -1514,11 +1451,10 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_INTERRUPTS, "SELECT MAX(ID) + 1 FROM spell_interrupts", CONNECTION_SYNCH); // SpellItemEnchantment.db2 - PrepareStatement(HOTFIX_SEL_SPELL_ITEM_ENCHANTMENT, "SELECT ID, Name, HordeName, Duration, EffectArg1, EffectArg2, EffectArg3, " - "EffectScalingPoints1, EffectScalingPoints2, EffectScalingPoints3, IconFileDataID, MinItemLevel, MaxItemLevel, TransmogUseConditionID, " - "TransmogCost, EffectPointsMin1, EffectPointsMin2, EffectPointsMin3, ItemVisual, Flags, RequiredSkillID, RequiredSkillRank, ItemLevel, " - "Charges, Effect1, Effect2, Effect3, ScalingClass, ScalingClassRestricted, ConditionID, MinLevel, MaxLevel FROM spell_item_enchantment" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_ITEM_ENCHANTMENT, "SELECT ID, Name, HordeName, EffectArg1, EffectArg2, EffectArg3, EffectScalingPoints1, " + "EffectScalingPoints2, EffectScalingPoints3, GemItemID, TransmogUnlockConditionID, TransmogCost, IconFileDataID, EffectPointsMin1, " + "EffectPointsMin2, EffectPointsMin3, ItemVisual, Flags, RequiredSkillID, RequiredSkillRank, ItemLevel, Charges, Effect1, Effect2, Effect3, " + "ScalingClass, ScalingClassRestricted, ConditionID, MinLevel, MaxLevel FROM spell_item_enchantment WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_ITEM_ENCHANTMENT, "SELECT MAX(ID) + 1 FROM spell_item_enchantment", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_SPELL_ITEM_ENCHANTMENT, "SELECT ID, Name_lang, HordeName_lang FROM spell_item_enchantment_locale" " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1545,7 +1481,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_LEARN_SPELL, "SELECT MAX(ID) + 1 FROM spell_learn_spell", CONNECTION_SYNCH); // SpellLevels.db2 - PrepareStatement(HOTFIX_SEL_SPELL_LEVELS, "SELECT ID, DifficultyID, MaxLevel, MaxPassiveAuraLevel, BaseLevel, SpellLevel, SpellID" + PrepareStatement(HOTFIX_SEL_SPELL_LEVELS, "SELECT ID, DifficultyID, BaseLevel, MaxLevel, SpellLevel, MaxPassiveAuraLevel, SpellID" " FROM spell_levels WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_LEVELS, "SELECT MAX(ID) + 1 FROM spell_levels", CONNECTION_SYNCH); @@ -1553,8 +1489,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PrepareStatement(HOTFIX_SEL_SPELL_MISC, "SELECT ID, Attributes1, Attributes2, Attributes3, Attributes4, Attributes5, Attributes6, Attributes7, " "Attributes8, Attributes9, Attributes10, Attributes11, Attributes12, Attributes13, Attributes14, Attributes15, DifficultyID, " "CastingTimeIndex, DurationIndex, RangeIndex, SchoolMask, Speed, LaunchDelay, MinDuration, SpellIconFileDataID, ActiveIconFileDataID, " - "ContentTuningID, ShowFutureSpellPlayerConditionID, SpellVisualScript, ActiveSpellVisualScript, SpellID FROM spell_misc" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ContentTuningID, ShowFutureSpellPlayerConditionID, SpellID FROM spell_misc WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_MISC, "SELECT MAX(ID) + 1 FROM spell_misc", CONNECTION_SYNCH); // SpellName.db2 @@ -1564,7 +1499,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() // SpellPower.db2 PrepareStatement(HOTFIX_SEL_SPELL_POWER, "SELECT ID, OrderIndex, ManaCost, ManaCostPerLevel, ManaPerSecond, PowerDisplayID, AltPowerBarID, " - "PowerCostPct, PowerCostMaxPct, OptionalCostPct, PowerPctPerSecond, PowerType, RequiredAuraSpellID, OptionalCost, SpellID FROM spell_power" + "PowerCostPct, PowerCostMaxPct, PowerPctPerSecond, PowerType, RequiredAuraSpellID, OptionalCost, SpellID FROM spell_power" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_POWER, "SELECT MAX(ID) + 1 FROM spell_power", CONNECTION_SYNCH); @@ -1596,10 +1531,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() // SpellReagents.db2 PrepareStatement(HOTFIX_SEL_SPELL_REAGENTS, "SELECT ID, SpellID, Reagent1, Reagent2, Reagent3, Reagent4, Reagent5, Reagent6, Reagent7, Reagent8, " - "ReagentCount1, ReagentCount2, ReagentCount3, ReagentCount4, ReagentCount5, ReagentCount6, ReagentCount7, ReagentCount8, " - "ReagentRecraftCount1, ReagentRecraftCount2, ReagentRecraftCount3, ReagentRecraftCount4, ReagentRecraftCount5, ReagentRecraftCount6, " - "ReagentRecraftCount7, ReagentRecraftCount8, ReagentSource1, ReagentSource2, ReagentSource3, ReagentSource4, ReagentSource5, ReagentSource6, " - "ReagentSource7, ReagentSource8 FROM spell_reagents WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ReagentCount1, ReagentCount2, ReagentCount3, ReagentCount4, ReagentCount5, ReagentCount6, ReagentCount7, ReagentCount8 FROM spell_reagents" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_REAGENTS, "SELECT MAX(ID) + 1 FROM spell_reagents", CONNECTION_SYNCH); // SpellReagentsCurrency.db2 @@ -1608,7 +1541,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_REAGENTS_CURRENCY, "SELECT MAX(ID) + 1 FROM spell_reagents_currency", CONNECTION_SYNCH); // SpellScaling.db2 - PrepareStatement(HOTFIX_SEL_SPELL_SCALING, "SELECT ID, SpellID, MinScalingLevel, MaxScalingLevel, ScalesFromItemLevel FROM spell_scaling" + PrepareStatement(HOTFIX_SEL_SPELL_SCALING, "SELECT ID, SpellID, Class, MinScalingLevel, MaxScalingLevel, ScalesFromItemLevel FROM spell_scaling" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_SCALING, "SELECT MAX(ID) + 1 FROM spell_scaling", CONNECTION_SYNCH); @@ -1618,9 +1551,10 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_SHAPESHIFT, "SELECT MAX(ID) + 1 FROM spell_shapeshift", CONNECTION_SYNCH); // SpellShapeshiftForm.db2 - PrepareStatement(HOTFIX_SEL_SPELL_SHAPESHIFT_FORM, "SELECT ID, Name, CreatureDisplayID, CreatureType, Flags, AttackIconFileID, BonusActionBar, " - "CombatRoundTime, DamageVariance, MountTypeID, PresetSpellID1, PresetSpellID2, PresetSpellID3, PresetSpellID4, PresetSpellID5, " - "PresetSpellID6, PresetSpellID7, PresetSpellID8 FROM spell_shapeshift_form WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_SPELL_SHAPESHIFT_FORM, "SELECT ID, Name, CreatureType, Flags, AttackIconFileID, BonusActionBar, CombatRoundTime, " + "DamageVariance, MountTypeID, CreatureDisplayID1, CreatureDisplayID2, CreatureDisplayID3, CreatureDisplayID4, PresetSpellID1, PresetSpellID2, " + "PresetSpellID3, PresetSpellID4, PresetSpellID5, PresetSpellID6, PresetSpellID7, PresetSpellID8 FROM spell_shapeshift_form" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_SHAPESHIFT_FORM, "SELECT MAX(ID) + 1 FROM spell_shapeshift_form", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_SPELL_SHAPESHIFT_FORM, "SELECT ID, Name_lang FROM spell_shapeshift_form_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -1639,25 +1573,25 @@ void HotfixDatabaseConnection::DoPrepareStatements() PrepareStatement(HOTFIX_SEL_SPELL_VISUAL, "SELECT ID, MissileCastOffset1, MissileCastOffset2, MissileCastOffset3, MissileImpactOffset1, " "MissileImpactOffset2, MissileImpactOffset3, AnimEventSoundID, Flags, MissileAttachment, MissileDestinationAttachment, " "MissileCastPositionerID, MissileImpactPositionerID, MissileTargetingKit, HostileSpellVisualID, CasterSpellVisualID, SpellVisualMissileSetID, " - "DamageNumberDelay, LowViolenceSpellVisualID, RaidSpellVisualMissileSetID, ReducedUnexpectedCameraMovementSpellVisualID FROM spell_visual" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "DamageNumberDelay, LowViolenceSpellVisualID, RaidSpellVisualMissileSetID, ReducedUnexpectedCameraMovementSpellVisualID, AreaModel, " + "HasMissile FROM spell_visual WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_VISUAL, "SELECT MAX(ID) + 1 FROM spell_visual", CONNECTION_SYNCH); // SpellVisualEffectName.db2 PrepareStatement(HOTFIX_SEL_SPELL_VISUAL_EFFECT_NAME, "SELECT ID, ModelFileDataID, BaseMissileSpeed, Scale, MinAllowedScale, MaxAllowedScale, " - "Alpha, Flags, TextureFileDataID, EffectRadius, Type, GenericID, RibbonQualityID, DissolveEffectID, ModelPosition, Unknown901" + "Alpha, Flags, TextureFileDataID, EffectRadius, Type, GenericID, RibbonQualityID, DissolveEffectID, ModelPosition" " FROM spell_visual_effect_name WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_VISUAL_EFFECT_NAME, "SELECT MAX(ID) + 1 FROM spell_visual_effect_name", CONNECTION_SYNCH); // SpellVisualMissile.db2 PrepareStatement(HOTFIX_SEL_SPELL_VISUAL_MISSILE, "SELECT CastOffset1, CastOffset2, CastOffset3, ImpactOffset1, ImpactOffset2, ImpactOffset3, ID, " "SpellVisualEffectNameID, SoundEntriesID, Attachment, DestinationAttachment, CastPositionerID, ImpactPositionerID, FollowGroundHeight, " - "FollowGroundDropSpeed, FollowGroundApproach, Flags, SpellMissileMotionID, AnimKitID, ClutterLevel, DecayTimeAfterImpact, " - "SpellVisualMissileSetID FROM spell_visual_missile WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "FollowGroundDropSpeed, FollowGroundApproach, Flags, SpellMissileMotionID, AnimKitID, SpellVisualMissileSetID FROM spell_visual_missile" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_VISUAL_MISSILE, "SELECT MAX(ID) + 1 FROM spell_visual_missile", CONNECTION_SYNCH); // SpellVisualKit.db2 - PrepareStatement(HOTFIX_SEL_SPELL_VISUAL_KIT, "SELECT ID, FallbackPriority, FallbackSpellVisualKitId, DelayMin, DelayMax, Flags1, Flags2" + PrepareStatement(HOTFIX_SEL_SPELL_VISUAL_KIT, "SELECT ID, FallbackSpellVisualKitId, DelayMin, DelayMax, FallbackPriority, Flags1, Flags2" " FROM spell_visual_kit WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_SPELL_VISUAL_KIT, "SELECT MAX(ID) + 1 FROM spell_visual_kit", CONNECTION_SYNCH); @@ -1678,15 +1612,17 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_TACT_KEY, "SELECT MAX(ID) + 1 FROM tact_key", CONNECTION_SYNCH); // Talent.db2 - PrepareStatement(HOTFIX_SEL_TALENT, "SELECT ID, Description, TierID, Flags, ColumnIndex, ClassID, SpecID, SpellID, OverridesSpellID, " - "CategoryMask1, CategoryMask2 FROM talent WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_TALENT, "SELECT ID, Description, TierID, Flags, ColumnIndex, TabID, ClassID, SpecID, SpellID, OverridesSpellID, " + "RequiredSpellID, CategoryMask1, CategoryMask2, SpellRank1, SpellRank2, SpellRank3, SpellRank4, SpellRank5, SpellRank6, SpellRank7, " + "SpellRank8, SpellRank9, PrereqTalent1, PrereqTalent2, PrereqTalent3, PrereqRank1, PrereqRank2, PrereqRank3 FROM talent" + " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_TALENT, "SELECT MAX(ID) + 1 FROM talent", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_TALENT, "SELECT ID, Description_lang FROM talent_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // TaxiNodes.db2 PrepareStatement(HOTFIX_SEL_TAXI_NODES, "SELECT Name, PosX, PosY, PosZ, MapOffsetX, MapOffsetY, FlightMapOffsetX, FlightMapOffsetY, ID, " - "ContinentID, ConditionID, CharacterBitNumber, Flags, UiTextureKitID, MinimapAtlasMemberID, Facing, SpecialIconConditionID, " - "VisibilityConditionID, MountCreatureID1, MountCreatureID2 FROM taxi_nodes WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ContinentID, ConditionID, CharacterBitNumber, Flags, UiTextureKitID, Facing, SpecialIconConditionID, VisibilityConditionID, " + "MountCreatureID1, MountCreatureID2 FROM taxi_nodes WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_TAXI_NODES, "SELECT MAX(ID) + 1 FROM taxi_nodes", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_TAXI_NODES, "SELECT ID, Name_lang FROM taxi_nodes_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); @@ -1830,19 +1766,14 @@ void HotfixDatabaseConnection::DoPrepareStatements() " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_TRAIT_TREE_X_TRAIT_CURRENCY, "SELECT MAX(ID) + 1 FROM trait_tree_x_trait_currency", CONNECTION_SYNCH); - // TransmogIllusion.db2 - PrepareStatement(HOTFIX_SEL_TRANSMOG_ILLUSION, "SELECT ID, UnlockConditionID, TransmogCost, SpellItemEnchantmentID, Flags FROM transmog_illusion" - " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_TRANSMOG_ILLUSION, "SELECT MAX(ID) + 1 FROM transmog_illusion", CONNECTION_SYNCH); - // TransmogSet.db2 PrepareStatement(HOTFIX_SEL_TRANSMOG_SET, "SELECT Name, ID, ClassMask, TrackingQuestID, Flags, TransmogSetGroupID, ItemNameDescriptionID, " - "ParentTransmogSetID, Unknown810, ExpansionID, PatchID, UiOrder, PlayerConditionID FROM transmog_set WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "ParentTransmogSetID, ExpansionID, UiOrder FROM transmog_set WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_TRANSMOG_SET, "SELECT MAX(ID) + 1 FROM transmog_set", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_TRANSMOG_SET, "SELECT ID, Name_lang FROM transmog_set_locale WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); // TransmogSetGroup.db2 - PrepareStatement(HOTFIX_SEL_TRANSMOG_SET_GROUP, "SELECT ID, Name FROM transmog_set_group WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + PrepareStatement(HOTFIX_SEL_TRANSMOG_SET_GROUP, "SELECT Name, ID FROM transmog_set_group WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_TRANSMOG_SET_GROUP, "SELECT MAX(ID) + 1 FROM transmog_set_group", CONNECTION_SYNCH); PREPARE_LOCALE_STMT(HOTFIX_SEL_TRANSMOG_SET_GROUP, "SELECT ID, Name_lang FROM transmog_set_group_locale WHERE (`VerifiedBuild` > 0) = ?" " AND locale = ?", CONNECTION_SYNCH); @@ -1875,7 +1806,7 @@ void HotfixDatabaseConnection::DoPrepareStatements() PREPARE_MAX_ID_STMT(HOTFIX_SEL_UI_MAP_ASSIGNMENT, "SELECT MAX(ID) + 1 FROM ui_map_assignment", CONNECTION_SYNCH); // UiMapLink.db2 - PrepareStatement(HOTFIX_SEL_UI_MAP_LINK, "SELECT UiMinX, UiMinY, UiMaxX, UiMaxY, ID, ParentUiMapID, OrderIndex, ChildUiMapID, PlayerConditionID, " + PrepareStatement(HOTFIX_SEL_UI_MAP_LINK, "SELECT UiMinX, UiMinY, UiMaxX, UiMaxY, ID, ParentUiMapID, OrderIndex, ChildUiMapID, " "OverrideHighlightFileDataID, OverrideHighlightAtlasID, Flags FROM ui_map_link WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_UI_MAP_LINK, "SELECT MAX(ID) + 1 FROM ui_map_link", CONNECTION_SYNCH); @@ -1883,15 +1814,6 @@ void HotfixDatabaseConnection::DoPrepareStatements() PrepareStatement(HOTFIX_SEL_UI_MAP_X_MAP_ART, "SELECT ID, PhaseID, UiMapArtID, UiMapID FROM ui_map_x_map_art WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_UI_MAP_X_MAP_ART, "SELECT MAX(ID) + 1 FROM ui_map_x_map_art", CONNECTION_SYNCH); - // UiSplashScreen.db2 - PrepareStatement(HOTFIX_SEL_UI_SPLASH_SCREEN, "SELECT ID, Header, TopLeftFeatureTitle, TopLeftFeatureDesc, BottomLeftFeatureTitle, " - "BottomLeftFeatureDesc, RightFeatureTitle, RightFeatureDesc, AllianceQuestID, HordeQuestID, ScreenType, TextureKitID, SoundKitID, " - "PlayerConditionID, CharLevelConditionID, RequiredTimeEventPassed FROM ui_splash_screen WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); - PREPARE_MAX_ID_STMT(HOTFIX_SEL_UI_SPLASH_SCREEN, "SELECT MAX(ID) + 1 FROM ui_splash_screen", CONNECTION_SYNCH); - PREPARE_LOCALE_STMT(HOTFIX_SEL_UI_SPLASH_SCREEN, "SELECT ID, Header_lang, TopLeftFeatureTitle_lang, TopLeftFeatureDesc_lang, " - "BottomLeftFeatureTitle_lang, BottomLeftFeatureDesc_lang, RightFeatureTitle_lang, RightFeatureDesc_lang FROM ui_splash_screen_locale" - " WHERE (`VerifiedBuild` > 0) = ? AND locale = ?", CONNECTION_SYNCH); - // UnitCondition.db2 PrepareStatement(HOTFIX_SEL_UNIT_CONDITION, "SELECT ID, Flags, Variable1, Variable2, Variable3, Variable4, Variable5, Variable6, Variable7, " "Variable8, Op1, Op2, Op3, Op4, Op5, Op6, Op7, Op8, Value1, Value2, Value3, Value4, Value5, Value6, Value7, Value8 FROM unit_condition" @@ -1909,8 +1831,8 @@ void HotfixDatabaseConnection::DoPrepareStatements() // Vehicle.db2 PrepareStatement(HOTFIX_SEL_VEHICLE, "SELECT ID, Flags, FlagsB, TurnSpeed, PitchSpeed, PitchMin, PitchMax, MouseLookOffsetPitch, " "CameraFadeDistScalarMin, CameraFadeDistScalarMax, CameraPitchOffset, FacingLimitRight, FacingLimitLeft, CameraYawOffset, " - "VehicleUIIndicatorID, MissileTargetingID, VehiclePOITypeID, SeatID1, SeatID2, SeatID3, SeatID4, SeatID5, SeatID6, SeatID7, SeatID8, " - "PowerDisplayID1, PowerDisplayID2, PowerDisplayID3 FROM vehicle WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); + "VehicleUIIndicatorID, MissileTargetingID, VehiclePOITypeID, UiLocomotionType, SeatID1, SeatID2, SeatID3, SeatID4, SeatID5, SeatID6, SeatID7, " + "SeatID8, PowerDisplayID1, PowerDisplayID2, PowerDisplayID3 FROM vehicle WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_VEHICLE, "SELECT MAX(ID) + 1 FROM vehicle", CONNECTION_SYNCH); // VehicleSeat.db2 @@ -1920,9 +1842,9 @@ void HotfixDatabaseConnection::DoPrepareStatements() "ExitPreDelay, ExitSpeed, ExitGravity, ExitMinDuration, ExitMaxDuration, ExitMinArcHeight, ExitMaxArcHeight, ExitAnimStart, ExitAnimLoop, " "ExitAnimEnd, VehicleEnterAnim, VehicleEnterAnimBone, VehicleExitAnim, VehicleExitAnimBone, VehicleRideAnimLoop, VehicleRideAnimLoopBone, " "PassengerAttachmentID, PassengerYaw, PassengerPitch, PassengerRoll, VehicleEnterAnimDelay, VehicleExitAnimDelay, VehicleAbilityDisplay, " - "EnterUISoundID, ExitUISoundID, UiSkinFileDataID, CameraEnteringDelay, CameraEnteringDuration, CameraExitingDelay, CameraExitingDuration, " - "CameraPosChaseRate, CameraFacingChaseRate, CameraEnteringZoom, CameraSeatZoomMin, CameraSeatZoomMax, EnterAnimKitID, RideAnimKitID, " - "ExitAnimKitID, VehicleEnterAnimKitID, VehicleRideAnimKitID, VehicleExitAnimKitID, CameraModeID FROM vehicle_seat" + "EnterUISoundID, ExitUISoundID, UiSkinFileDataID, UiSkin, CameraEnteringDelay, CameraEnteringDuration, CameraExitingDelay, " + "CameraExitingDuration, CameraPosChaseRate, CameraFacingChaseRate, CameraEnteringZoom, CameraSeatZoomMin, CameraSeatZoomMax, EnterAnimKitID, " + "RideAnimKitID, ExitAnimKitID, VehicleEnterAnimKitID, VehicleRideAnimKitID, VehicleExitAnimKitID, CameraModeID FROM vehicle_seat" " WHERE (`VerifiedBuild` > 0) = ?", CONNECTION_SYNCH); PREPARE_MAX_ID_STMT(HOTFIX_SEL_VEHICLE_SEAT, "SELECT MAX(ID) + 1 FROM vehicle_seat", CONNECTION_SYNCH); diff --git a/src/server/database/Database/Implementation/HotfixDatabase.h b/src/server/database/Database/Implementation/HotfixDatabase.h index 8eaa6e0a81d..524216c81e8 100644 --- a/src/server/database/Database/Implementation/HotfixDatabase.h +++ b/src/server/database/Database/Implementation/HotfixDatabase.h @@ -62,6 +62,7 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_AREA_TRIGGER, HOTFIX_SEL_AREA_TRIGGER_MAX_ID, + HOTFIX_SEL_AREA_TRIGGER_LOCALE, HOTFIX_SEL_ARMOR_LOCATION, HOTFIX_SEL_ARMOR_LOCATION_MAX_ID, @@ -141,9 +142,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_AZERITE_TIER_UNLOCK_SET, HOTFIX_SEL_AZERITE_TIER_UNLOCK_SET_MAX_ID, - HOTFIX_SEL_AZERITE_UNLOCK_MAPPING, - HOTFIX_SEL_AZERITE_UNLOCK_MAPPING_MAX_ID, - HOTFIX_SEL_BANK_BAG_SLOT_PRICES, HOTFIX_SEL_BANK_BAG_SLOT_PRICES_MAX_ID, @@ -179,9 +177,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_BROADCAST_TEXT_MAX_ID, HOTFIX_SEL_BROADCAST_TEXT_LOCALE, - HOTFIX_SEL_BROADCAST_TEXT_DURATION, - HOTFIX_SEL_BROADCAST_TEXT_DURATION_MAX_ID, - HOTFIX_SEL_CFG_CATEGORIES, HOTFIX_SEL_CFG_CATEGORIES_MAX_ID, HOTFIX_SEL_CFG_CATEGORIES_LOCALE, @@ -189,9 +184,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_CFG_REGIONS, HOTFIX_SEL_CFG_REGIONS_MAX_ID, - HOTFIX_SEL_CHALLENGE_MODE_ITEM_BONUS_OVERRIDE, - HOTFIX_SEL_CHALLENGE_MODE_ITEM_BONUS_OVERRIDE_MAX_ID, - HOTFIX_SEL_CHAR_TITLES, HOTFIX_SEL_CHAR_TITLES_MAX_ID, HOTFIX_SEL_CHAR_TITLES_LOCALE, @@ -266,18 +258,9 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_CONTENT_TUNING, HOTFIX_SEL_CONTENT_TUNING_MAX_ID, - HOTFIX_SEL_CONTENT_TUNING_X_EXPECTED, - HOTFIX_SEL_CONTENT_TUNING_X_EXPECTED_MAX_ID, - - HOTFIX_SEL_CONTENT_TUNING_X_LABEL, - HOTFIX_SEL_CONTENT_TUNING_X_LABEL_MAX_ID, - HOTFIX_SEL_CONVERSATION_LINE, HOTFIX_SEL_CONVERSATION_LINE_MAX_ID, - HOTFIX_SEL_CORRUPTION_EFFECTS, - HOTFIX_SEL_CORRUPTION_EFFECTS_MAX_ID, - HOTFIX_SEL_CREATURE_DISPLAY_INFO, HOTFIX_SEL_CREATURE_DISPLAY_INFO_MAX_ID, @@ -421,9 +404,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_GEM_PROPERTIES, HOTFIX_SEL_GEM_PROPERTIES_MAX_ID, - HOTFIX_SEL_GLOBAL_CURVE, - HOTFIX_SEL_GLOBAL_CURVE_MAX_ID, - HOTFIX_SEL_GLYPH_BINDABLE_SPELL, HOTFIX_SEL_GLYPH_BINDABLE_SPELL_MAX_ID, @@ -489,15 +469,9 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_ITEM_BONUS, HOTFIX_SEL_ITEM_BONUS_MAX_ID, - HOTFIX_SEL_ITEM_BONUS_LIST_GROUP_ENTRY, - HOTFIX_SEL_ITEM_BONUS_LIST_GROUP_ENTRY_MAX_ID, - HOTFIX_SEL_ITEM_BONUS_LIST_LEVEL_DELTA, HOTFIX_SEL_ITEM_BONUS_LIST_LEVEL_DELTA_MAX_ID, - HOTFIX_SEL_ITEM_BONUS_TREE, - HOTFIX_SEL_ITEM_BONUS_TREE_MAX_ID, - HOTFIX_SEL_ITEM_BONUS_TREE_NODE, HOTFIX_SEL_ITEM_BONUS_TREE_NODE_MAX_ID, @@ -591,9 +565,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_ITEM_X_BONUS_TREE, HOTFIX_SEL_ITEM_X_BONUS_TREE_MAX_ID, - HOTFIX_SEL_ITEM_X_ITEM_EFFECT, - HOTFIX_SEL_ITEM_X_ITEM_EFFECT_MAX_ID, - HOTFIX_SEL_JOURNAL_ENCOUNTER, HOTFIX_SEL_JOURNAL_ENCOUNTER_MAX_ID, HOTFIX_SEL_JOURNAL_ENCOUNTER_LOCALE, @@ -657,9 +628,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_MAP_DIFFICULTY_X_CONDITION_MAX_ID, HOTFIX_SEL_MAP_DIFFICULTY_X_CONDITION_LOCALE, - HOTFIX_SEL_MAW_POWER, - HOTFIX_SEL_MAW_POWER_MAX_ID, - HOTFIX_SEL_MODIFIER_TREE, HOTFIX_SEL_MODIFIER_TREE_MAX_ID, @@ -814,7 +782,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_SKILL_LINE_ABILITY, HOTFIX_SEL_SKILL_LINE_ABILITY_MAX_ID, - HOTFIX_SEL_SKILL_LINE_ABILITY_LOCALE, HOTFIX_SEL_SKILL_LINE_X_TRAIT_TREE, HOTFIX_SEL_SKILL_LINE_X_TRAIT_TREE_MAX_ID, @@ -822,9 +789,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_SKILL_RACE_CLASS_INFO, HOTFIX_SEL_SKILL_RACE_CLASS_INFO_MAX_ID, - HOTFIX_SEL_SOULBIND_CONDUIT_RANK, - HOTFIX_SEL_SOULBIND_CONDUIT_RANK_MAX_ID, - HOTFIX_SEL_SOUND_KIT, HOTFIX_SEL_SOUND_KIT_MAX_ID, @@ -1060,9 +1024,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_TRAIT_TREE_X_TRAIT_CURRENCY, HOTFIX_SEL_TRAIT_TREE_X_TRAIT_CURRENCY_MAX_ID, - HOTFIX_SEL_TRANSMOG_ILLUSION, - HOTFIX_SEL_TRANSMOG_ILLUSION_MAX_ID, - HOTFIX_SEL_TRANSMOG_SET, HOTFIX_SEL_TRANSMOG_SET_MAX_ID, HOTFIX_SEL_TRANSMOG_SET_LOCALE, @@ -1093,10 +1054,6 @@ enum HotfixDatabaseStatements : uint32 HOTFIX_SEL_UI_MAP_X_MAP_ART, HOTFIX_SEL_UI_MAP_X_MAP_ART_MAX_ID, - HOTFIX_SEL_UI_SPLASH_SCREEN, - HOTFIX_SEL_UI_SPLASH_SCREEN_MAX_ID, - HOTFIX_SEL_UI_SPLASH_SCREEN_LOCALE, - HOTFIX_SEL_UNIT_CONDITION, HOTFIX_SEL_UNIT_CONDITION_MAX_ID, diff --git a/src/server/game/DataStores/DB2LoadInfo.h b/src/server/game/DataStores/DB2LoadInfo.h index 1a2bdd7844c..5ebf434a6d3 100644 --- a/src/server/game/DataStores/DB2LoadInfo.h +++ b/src/server/game/DataStores/DB2LoadInfo.h @@ -77,7 +77,7 @@ struct AdventureJournalLoadInfo { false, FT_BYTE, "ButtonActionType" }, { true, FT_INT, "TextureFileDataID" }, { false, FT_SHORT, "LfgDungeonID" }, - { true, FT_INT, "QuestID" }, + { false, FT_INT, "QuestID" }, { false, FT_SHORT, "BattleMasterListID" }, { false, FT_BYTE, "PriorityMin" }, { false, FT_BYTE, "PriorityMax" }, @@ -542,10 +542,10 @@ struct AzeritePowerSetMemberLoadInfo static constexpr DB2FieldMeta Fields[6] = { { false, FT_INT, "ID" }, - { true, FT_INT, "AzeritePowerSetID" }, + { false, FT_INT, "AzeritePowerSetID" }, { true, FT_INT, "AzeritePowerID" }, { true, FT_INT, "Class" }, - { true, FT_BYTE, "Tier" }, + { false, FT_BYTE, "Tier" }, { true, FT_INT, "OrderIndex" }, }; @@ -641,7 +641,7 @@ struct BattlePetBreedQualityLoadInfo { { false, FT_INT, "ID" }, { false, FT_FLOAT, "StateMultiplier" }, - { true, FT_BYTE, "QualityEnum" }, + { false, FT_BYTE, "QualityEnum" }, }; static constexpr DB2LoadInfo Instance{ Fields, 3, &BattlePetBreedQualityMeta::Instance, HOTFIX_SEL_BATTLE_PET_BREED_QUALITY }; @@ -670,7 +670,7 @@ struct BattlePetSpeciesLoadInfo { true, FT_INT, "CreatureID" }, { true, FT_INT, "SummonSpellID" }, { true, FT_INT, "IconFileDataID" }, - { true, FT_BYTE, "PetTypeEnum" }, + { false, FT_BYTE, "PetTypeEnum" }, { true, FT_INT, "Flags" }, { true, FT_BYTE, "SourceTypeEnum" }, { true, FT_INT, "CardUIModelSceneID" }, @@ -814,7 +814,7 @@ struct CharacterLoadoutLoadInfo { false, FT_INT, "ID" }, { true, FT_BYTE, "ChrClassID" }, { true, FT_INT, "Purpose" }, - { true, FT_BYTE, "ModID" }, + { true, FT_BYTE, "ItemContext" }, }; static constexpr DB2LoadInfo Instance{ Fields, 5, &CharacterLoadoutMeta::Instance, HOTFIX_SEL_CHARACTER_LOADOUT }; @@ -1088,12 +1088,12 @@ struct ChrRacesLoadInfo { true, FT_INT, "CreateScreenFileDataID" }, { true, FT_INT, "SelectScreenFileDataID" }, { true, FT_INT, "LowResScreenFileDataID" }, - { true, FT_INT, "AlteredFormStartVisualKitID1" }, - { true, FT_INT, "AlteredFormStartVisualKitID2" }, - { true, FT_INT, "AlteredFormStartVisualKitID3" }, - { true, FT_INT, "AlteredFormFinishVisualKitID1" }, - { true, FT_INT, "AlteredFormFinishVisualKitID2" }, - { true, FT_INT, "AlteredFormFinishVisualKitID3" }, + { false, FT_INT, "AlteredFormStartVisualKitID1" }, + { false, FT_INT, "AlteredFormStartVisualKitID2" }, + { false, FT_INT, "AlteredFormStartVisualKitID3" }, + { false, FT_INT, "AlteredFormFinishVisualKitID1" }, + { false, FT_INT, "AlteredFormFinishVisualKitID2" }, + { false, FT_INT, "AlteredFormFinishVisualKitID3" }, { true, FT_INT, "HeritageArmorAchievementID" }, { true, FT_INT, "StartingLevel" }, { true, FT_INT, "UiDisplayOrder" }, @@ -1143,7 +1143,7 @@ struct ChrSpecializationLoadInfo { false, FT_STRING, "FemaleName" }, { false, FT_STRING, "Description" }, { false, FT_INT, "ID" }, - { true, FT_BYTE, "ClassID" }, + { false, FT_BYTE, "ClassID" }, { true, FT_BYTE, "OrderIndex" }, { true, FT_BYTE, "PetTalentType" }, { true, FT_BYTE, "Role" }, @@ -1442,7 +1442,7 @@ struct CurrencyContainerLoadInfo { true, FT_INT, "ContainerIconID" }, { true, FT_INT, "ContainerQuality" }, { true, FT_INT, "OnLootSpellVisualKitID" }, - { false, FT_INT, "CurrencyTypeID" }, + { false, FT_INT, "CurrencyTypesID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 9, &CurrencyContainerMeta::Instance, HOTFIX_SEL_CURRENCY_CONTAINER }; @@ -1506,20 +1506,20 @@ struct DestructibleModelDataLoadInfo { false, FT_INT, "ID" }, { true, FT_BYTE, "State0ImpactEffectDoodadSet" }, { false, FT_BYTE, "State0AmbientDoodadSet" }, - { true, FT_INT, "State1Wmo" }, + { false, FT_INT, "State1Wmo" }, { true, FT_BYTE, "State1DestructionDoodadSet" }, { true, FT_BYTE, "State1ImpactEffectDoodadSet" }, { false, FT_BYTE, "State1AmbientDoodadSet" }, - { true, FT_INT, "State2Wmo" }, + { false, FT_INT, "State2Wmo" }, { true, FT_BYTE, "State2DestructionDoodadSet" }, { true, FT_BYTE, "State2ImpactEffectDoodadSet" }, { false, FT_BYTE, "State2AmbientDoodadSet" }, - { true, FT_INT, "State3Wmo" }, + { false, FT_INT, "State3Wmo" }, { false, FT_BYTE, "State3InitDoodadSet" }, { false, FT_BYTE, "State3AmbientDoodadSet" }, { false, FT_BYTE, "EjectDirection" }, { false, FT_BYTE, "DoNotHighlight" }, - { true, FT_INT, "State0Wmo" }, + { false, FT_INT, "State0Wmo" }, { false, FT_BYTE, "HealEffect" }, { false, FT_SHORT, "HealEffectSpeed" }, { true, FT_BYTE, "State0NameSet" }, @@ -1857,7 +1857,7 @@ struct GameobjectsLoadInfo { false, FT_FLOAT, "Rot4" }, { false, FT_INT, "ID" }, { false, FT_SHORT, "OwnerID" }, - { true, FT_INT, "DisplayID" }, + { false, FT_INT, "DisplayID" }, { false, FT_FLOAT, "Scale" }, { false, FT_BYTE, "TypeID" }, { false, FT_BYTE, "PhaseUseFlags" }, @@ -1884,7 +1884,7 @@ struct GarrAbilityLoadInfo { false, FT_STRING, "Description" }, { false, FT_INT, "ID" }, { false, FT_BYTE, "GarrAbilityCategoryID" }, - { true, FT_BYTE, "GarrFollowerTypeID" }, + { false, FT_BYTE, "GarrFollowerTypeID" }, { true, FT_INT, "IconFileDataID" }, { false, FT_SHORT, "FactionChangeGarrAbilityID" }, { false, FT_SHORT, "Flags" }, @@ -1902,8 +1902,8 @@ struct GarrBuildingLoadInfo { false, FT_STRING, "AllianceName" }, { false, FT_STRING, "Description" }, { false, FT_STRING, "Tooltip" }, - { true, FT_BYTE, "GarrTypeID" }, - { true, FT_BYTE, "BuildingType" }, + { false, FT_BYTE, "GarrTypeID" }, + { false, FT_BYTE, "BuildingType" }, { true, FT_INT, "HordeGameObjectID" }, { true, FT_INT, "AllianceGameObjectID" }, { false, FT_BYTE, "GarrSiteID" }, @@ -1967,15 +1967,15 @@ struct GarrFollowerLoadInfo { false, FT_STRING, "AllianceSourceText" }, { false, FT_STRING, "TitleName" }, { false, FT_INT, "ID" }, - { true, FT_BYTE, "GarrTypeID" }, - { true, FT_BYTE, "GarrFollowerTypeID" }, + { false, FT_BYTE, "GarrTypeID" }, + { false, FT_BYTE, "GarrFollowerTypeID" }, { true, FT_INT, "HordeCreatureID" }, { true, FT_INT, "AllianceCreatureID" }, { false, FT_BYTE, "HordeGarrFollRaceID" }, { false, FT_BYTE, "AllianceGarrFollRaceID" }, { false, FT_BYTE, "HordeGarrClassSpecID" }, { false, FT_BYTE, "AllianceGarrClassSpecID" }, - { true, FT_BYTE, "Quality" }, + { false, FT_BYTE, "Quality" }, { false, FT_BYTE, "FollowerLevel" }, { false, FT_SHORT, "ItemLevelWeapon" }, { false, FT_SHORT, "ItemLevelArmor" }, @@ -2026,9 +2026,9 @@ struct GarrMissionLoadInfo { false, FT_FLOAT, "WorldPosX" }, { false, FT_FLOAT, "WorldPosY" }, { false, FT_INT, "ID" }, - { true, FT_BYTE, "GarrTypeID" }, + { false, FT_BYTE, "GarrTypeID" }, { false, FT_BYTE, "GarrMissionTypeID" }, - { true, FT_BYTE, "GarrFollowerTypeID" }, + { false, FT_BYTE, "GarrFollowerTypeID" }, { false, FT_BYTE, "MaxFollowers" }, { false, FT_INT, "MissionCost" }, { false, FT_SHORT, "MissionCostCurrencyTypesID" }, @@ -2047,8 +2047,8 @@ struct GarrMissionLoadInfo { false, FT_INT, "OvermaxRewardPackID" }, { false, FT_BYTE, "FollowerDeathChance" }, { false, FT_INT, "AreaID" }, - { true, FT_INT, "Flags" }, - { true, FT_INT, "GarrMissionSetID" }, + { false, FT_INT, "Flags" }, + { false, FT_INT, "GarrMissionSetID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 31, &GarrMissionMeta::Instance, HOTFIX_SEL_GARR_MISSION }; @@ -2578,7 +2578,7 @@ struct ItemChildEquipmentLoadInfo { false, FT_INT, "ID" }, { true, FT_INT, "ChildItemID" }, { false, FT_BYTE, "ChildItemEquipSlot" }, - { true, FT_INT, "ParentItemID" }, + { false, FT_INT, "ParentItemID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 4, &ItemChildEquipmentMeta::Instance, HOTFIX_SEL_ITEM_CHILD_EQUIPMENT }; @@ -2745,7 +2745,7 @@ struct ItemEffectLoadInfo { false, FT_SHORT, "SpellCategoryID" }, { true, FT_INT, "SpellID" }, { false, FT_SHORT, "ChrSpecializationID" }, - { true, FT_INT, "ParentItemID" }, + { false, FT_INT, "ParentItemID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 10, &ItemEffectMeta::Instance, HOTFIX_SEL_ITEM_EFFECT }; @@ -2859,7 +2859,7 @@ struct ItemModifiedAppearanceLoadInfo { true, FT_INT, "ItemAppearanceModifierID" }, { true, FT_INT, "ItemAppearanceID" }, { true, FT_INT, "OrderIndex" }, - { false, FT_BYTE, "TransmogSourceTypeEnum" }, + { true, FT_INT, "TransmogSourceTypeEnum" }, }; static constexpr DB2LoadInfo Instance{ Fields, 6, &ItemModifiedAppearanceMeta::Instance, HOTFIX_SEL_ITEM_MODIFIED_APPEARANCE }; @@ -3323,7 +3323,7 @@ struct LfgDungeonsLoadInfo { false, FT_BYTE, "MinLevel" }, { false, FT_SHORT, "MaxLevel" }, { false, FT_BYTE, "TypeID" }, - { true, FT_BYTE, "Subtype" }, + { false, FT_BYTE, "Subtype" }, { true, FT_BYTE, "Faction" }, { true, FT_INT, "IconTextureFileID" }, { true, FT_INT, "RewardsBgTextureFileID" }, @@ -3557,7 +3557,7 @@ struct MapDifficultyLoadInfo { { false, FT_INT, "ID" }, { false, FT_STRING, "Message" }, - { true, FT_INT, "ItemContextPickerID" }, + { false, FT_INT, "ItemContextPickerID" }, { true, FT_INT, "ContentTuningID" }, { false, FT_BYTE, "DifficultyID" }, { false, FT_BYTE, "LockID" }, @@ -3847,7 +3847,7 @@ struct PlayerConditionLoadInfo { false, FT_INT, "AreaLogic" }, { false, FT_INT, "LfgLogic" }, { false, FT_INT, "CurrencyLogic" }, - { true, FT_INT, "QuestKillID" }, + { false, FT_INT, "QuestKillID" }, { false, FT_INT, "QuestKillLogic" }, { true, FT_BYTE, "MinExpansionLevel" }, { true, FT_BYTE, "MaxExpansionLevel" }, @@ -3890,18 +3890,18 @@ struct PlayerConditionLoadInfo { false, FT_BYTE, "MinReputation1" }, { false, FT_BYTE, "MinReputation2" }, { false, FT_BYTE, "MinReputation3" }, - { true, FT_INT, "PrevQuestID1" }, - { true, FT_INT, "PrevQuestID2" }, - { true, FT_INT, "PrevQuestID3" }, - { true, FT_INT, "PrevQuestID4" }, - { true, FT_INT, "CurrQuestID1" }, - { true, FT_INT, "CurrQuestID2" }, - { true, FT_INT, "CurrQuestID3" }, - { true, FT_INT, "CurrQuestID4" }, - { true, FT_INT, "CurrentCompletedQuestID1" }, - { true, FT_INT, "CurrentCompletedQuestID2" }, - { true, FT_INT, "CurrentCompletedQuestID3" }, - { true, FT_INT, "CurrentCompletedQuestID4" }, + { false, FT_INT, "PrevQuestID1" }, + { false, FT_INT, "PrevQuestID2" }, + { false, FT_INT, "PrevQuestID3" }, + { false, FT_INT, "PrevQuestID4" }, + { false, FT_INT, "CurrQuestID1" }, + { false, FT_INT, "CurrQuestID2" }, + { false, FT_INT, "CurrQuestID3" }, + { false, FT_INT, "CurrQuestID4" }, + { false, FT_INT, "CurrentCompletedQuestID1" }, + { false, FT_INT, "CurrentCompletedQuestID2" }, + { false, FT_INT, "CurrentCompletedQuestID3" }, + { false, FT_INT, "CurrentCompletedQuestID4" }, { true, FT_INT, "SpellID1" }, { true, FT_INT, "SpellID2" }, { true, FT_INT, "SpellID3" }, @@ -4064,7 +4064,7 @@ struct PvpTalentLoadInfo { { false, FT_STRING, "Description" }, { false, FT_INT, "ID" }, - { true, FT_INT, "SpecID" }, + { false, FT_INT, "SpecID" }, { true, FT_INT, "SpellID" }, { true, FT_INT, "OverridesSpellID" }, { true, FT_INT, "Flags" }, @@ -4111,7 +4111,7 @@ struct PvpTierLoadInfo { true, FT_SHORT, "MaxRating" }, { true, FT_INT, "PrevTier" }, { true, FT_INT, "NextTier" }, - { true, FT_BYTE, "BracketID" }, + { false, FT_BYTE, "BracketID" }, { true, FT_BYTE, "Rank" }, { true, FT_INT, "RankIconFileDataID" }, }; @@ -4335,7 +4335,7 @@ struct ScenarioStepLoadInfo { false, FT_STRING, "Title" }, { false, FT_SHORT, "ScenarioID" }, { false, FT_INT, "Criteriatreeid" }, - { true, FT_INT, "RewardQuestID" }, + { false, FT_INT, "RewardQuestID" }, { true, FT_INT, "RelatedStep" }, { false, FT_SHORT, "Supersedes" }, { false, FT_BYTE, "OrderIndex" }, @@ -4459,7 +4459,7 @@ struct SkillLineXTraitTreeLoadInfo static constexpr DB2FieldMeta Fields[4] = { { false, FT_INT, "ID" }, - { true, FT_INT, "SkillLineID" }, + { false, FT_INT, "SkillLineID" }, { true, FT_INT, "TraitTreeID" }, { true, FT_INT, "OrderIndex" }, }; @@ -5080,7 +5080,7 @@ struct SpellReagentsCurrencyLoadInfo static constexpr DB2FieldMeta Fields[4] = { { false, FT_INT, "ID" }, - { true, FT_INT, "SpellID" }, + { false, FT_INT, "SpellID" }, { false, FT_SHORT, "CurrencyTypesID" }, { false, FT_SHORT, "CurrencyCount" }, }; @@ -5261,7 +5261,7 @@ struct SpellVisualMissileLoadInfo { false, FT_INT, "Flags" }, { false, FT_SHORT, "SpellMissileMotionID" }, { false, FT_INT, "AnimKitID" }, - { false, FT_SHORT, "SpellVisualMissileSetID" }, + { false, FT_INT, "SpellVisualMissileSetID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 20, &SpellVisualMissileMeta::Instance, HOTFIX_SEL_SPELL_VISUAL_MISSILE }; @@ -5359,9 +5359,9 @@ struct TalentLoadInfo { false, FT_SHORT, "TabID" }, { false, FT_BYTE, "ClassID" }, { false, FT_SHORT, "SpecID" }, - { false, FT_INT, "SpellID" }, - { false, FT_INT, "OverridesSpellID" }, - { false, FT_INT, "RequiredSpellID" }, + { true, FT_INT, "SpellID" }, + { true, FT_INT, "OverridesSpellID" }, + { true, FT_INT, "RequiredSpellID" }, { true, FT_INT, "CategoryMask1" }, { true, FT_INT, "CategoryMask2" }, { true, FT_INT, "SpellRank1" }, @@ -5398,7 +5398,7 @@ struct TaxiNodesLoadInfo { false, FT_FLOAT, "FlightMapOffsetY" }, { false, FT_INT, "ID" }, { false, FT_INT, "ContinentID" }, - { true, FT_INT, "ConditionID" }, + { false, FT_INT, "ConditionID" }, { false, FT_SHORT, "CharacterBitNumber" }, { true, FT_INT, "Flags" }, { true, FT_INT, "UiTextureKitID" }, @@ -5438,8 +5438,8 @@ struct TaxiPathNodeLoadInfo { false, FT_SHORT, "ContinentID" }, { true, FT_INT, "Flags" }, { false, FT_INT, "Delay" }, - { true, FT_INT, "ArrivalEventID" }, - { true, FT_INT, "DepartureEventID" }, + { false, FT_INT, "ArrivalEventID" }, + { false, FT_INT, "DepartureEventID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 11, &TaxiPathNodeMeta::Instance, HOTFIX_SEL_TAXI_PATH_NODE }; @@ -5489,7 +5489,7 @@ struct TraitCondLoadInfo { { false, FT_INT, "ID" }, { true, FT_INT, "CondType" }, - { true, FT_INT, "TraitTreeID" }, + { false, FT_INT, "TraitTreeID" }, { true, FT_INT, "GrantedRanks" }, { true, FT_INT, "QuestID" }, { true, FT_INT, "AchievementID" }, @@ -5540,7 +5540,7 @@ struct TraitCurrencySourceLoadInfo { { false, FT_STRING, "Requirement" }, { false, FT_INT, "ID" }, - { true, FT_INT, "TraitCurrencyID" }, + { false, FT_INT, "TraitCurrencyID" }, { true, FT_INT, "Amount" }, { true, FT_INT, "QuestID" }, { true, FT_INT, "AchievementID" }, @@ -5574,7 +5574,7 @@ struct TraitDefinitionEffectPointsLoadInfo static constexpr DB2FieldMeta Fields[5] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitDefinitionID" }, + { false, FT_INT, "TraitDefinitionID" }, { true, FT_INT, "EffectIndex" }, { true, FT_INT, "OperationType" }, { true, FT_INT, "CurveID" }, @@ -5589,7 +5589,7 @@ struct TraitEdgeLoadInfo { { false, FT_INT, "ID" }, { true, FT_INT, "VisualStyle" }, - { true, FT_INT, "LeftTraitNodeID" }, + { false, FT_INT, "LeftTraitNodeID" }, { true, FT_INT, "RightTraitNodeID" }, { true, FT_INT, "Type" }, }; @@ -5602,10 +5602,10 @@ struct TraitNodeLoadInfo static constexpr DB2FieldMeta Fields[6] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitTreeID" }, + { false, FT_INT, "TraitTreeID" }, { true, FT_INT, "PosX" }, { true, FT_INT, "PosY" }, - { true, FT_BYTE, "Type" }, + { false, FT_BYTE, "Type" }, { true, FT_INT, "Flags" }, }; @@ -5642,7 +5642,7 @@ struct TraitNodeEntryXTraitCostLoadInfo static constexpr DB2FieldMeta Fields[3] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitNodeEntryID" }, + { false, FT_INT, "TraitNodeEntryID" }, { true, FT_INT, "TraitCostID" }, }; @@ -5654,7 +5654,7 @@ struct TraitNodeGroupLoadInfo static constexpr DB2FieldMeta Fields[3] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitTreeID" }, + { false, FT_INT, "TraitTreeID" }, { true, FT_INT, "Flags" }, }; @@ -5667,7 +5667,7 @@ struct TraitNodeGroupXTraitCondLoadInfo { { false, FT_INT, "ID" }, { true, FT_INT, "TraitCondID" }, - { true, FT_INT, "TraitNodeGroupID" }, + { false, FT_INT, "TraitNodeGroupID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 3, &TraitNodeGroupXTraitCondMeta::Instance, HOTFIX_SEL_TRAIT_NODE_GROUP_X_TRAIT_COND }; @@ -5678,7 +5678,7 @@ struct TraitNodeGroupXTraitCostLoadInfo static constexpr DB2FieldMeta Fields[3] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitNodeGroupID" }, + { false, FT_INT, "TraitNodeGroupID" }, { true, FT_INT, "TraitCostID" }, }; @@ -5690,7 +5690,7 @@ struct TraitNodeGroupXTraitNodeLoadInfo static constexpr DB2FieldMeta Fields[4] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitNodeGroupID" }, + { false, FT_INT, "TraitNodeGroupID" }, { true, FT_INT, "TraitNodeID" }, { true, FT_INT, "Index" }, }; @@ -5704,7 +5704,7 @@ struct TraitNodeXTraitCondLoadInfo { { false, FT_INT, "ID" }, { true, FT_INT, "TraitCondID" }, - { true, FT_INT, "TraitNodeID" }, + { false, FT_INT, "TraitNodeID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 3, &TraitNodeXTraitCondMeta::Instance, HOTFIX_SEL_TRAIT_NODE_X_TRAIT_COND }; @@ -5715,7 +5715,7 @@ struct TraitNodeXTraitCostLoadInfo static constexpr DB2FieldMeta Fields[3] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitNodeID" }, + { false, FT_INT, "TraitNodeID" }, { true, FT_INT, "TraitCostID" }, }; @@ -5727,7 +5727,7 @@ struct TraitNodeXTraitNodeEntryLoadInfo static constexpr DB2FieldMeta Fields[4] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitNodeID" }, + { false, FT_INT, "TraitNodeID" }, { true, FT_INT, "TraitNodeEntryID" }, { true, FT_INT, "Index" }, }; @@ -5740,7 +5740,7 @@ struct TraitTreeLoadInfo static constexpr DB2FieldMeta Fields[8] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitSystemID" }, + { false, FT_INT, "TraitSystemID" }, { true, FT_INT, "Unused1000_1" }, { true, FT_INT, "FirstTraitNodeID" }, { true, FT_INT, "PlayerConditionID" }, @@ -5757,7 +5757,7 @@ struct TraitTreeLoadoutLoadInfo static constexpr DB2FieldMeta Fields[3] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitTreeID" }, + { false, FT_INT, "TraitTreeID" }, { true, FT_INT, "ChrSpecializationID" }, }; @@ -5769,7 +5769,7 @@ struct TraitTreeLoadoutEntryLoadInfo static constexpr DB2FieldMeta Fields[6] = { { false, FT_INT, "ID" }, - { true, FT_INT, "TraitTreeLoadoutID" }, + { false, FT_INT, "TraitTreeLoadoutID" }, { true, FT_INT, "SelectedTraitNodeID" }, { true, FT_INT, "SelectedTraitNodeEntryID" }, { true, FT_INT, "NumPoints" }, @@ -5797,7 +5797,7 @@ struct TraitTreeXTraitCurrencyLoadInfo { { false, FT_INT, "ID" }, { true, FT_INT, "Index" }, - { true, FT_INT, "TraitTreeID" }, + { false, FT_INT, "TraitTreeID" }, { true, FT_INT, "TraitCurrencyID" }, }; @@ -5887,7 +5887,7 @@ struct UiMapLoadInfo { false, FT_INT, "ID" }, { true, FT_INT, "ParentUiMapID" }, { true, FT_INT, "Flags" }, - { false, FT_BYTE, "System" }, + { true, FT_BYTE, "System" }, { false, FT_BYTE, "Type" }, { true, FT_INT, "BountySetID" }, { false, FT_INT, "BountyDisplayLocation" }, @@ -5895,8 +5895,8 @@ struct UiMapLoadInfo { true, FT_INT, "VisibilityPlayerConditionID" }, { true, FT_BYTE, "HelpTextPosition" }, { true, FT_INT, "BkgAtlasID" }, - { true, FT_INT, "AlternateUiMapGroup" }, - { true, FT_INT, "ContentTuningID" }, + { false, FT_INT, "AlternateUiMapGroup" }, + { false, FT_INT, "ContentTuningID" }, }; static constexpr DB2LoadInfo Instance{ Fields, 14, &UiMapMeta::Instance, HOTFIX_SEL_UI_MAP }; diff --git a/src/server/game/DataStores/DB2Stores.cpp b/src/server/game/DataStores/DB2Stores.cpp index 8b233144e1b..a531364076c 100644 --- a/src/server/game/DataStores/DB2Stores.cpp +++ b/src/server/game/DataStores/DB2Stores.cpp @@ -951,13 +951,13 @@ uint32 DB2Manager::LoadStores(std::string const& dataPath, LocaleConstant defaul } // Check loaded DB2 files proper version - if (!sAreaTableStore.LookupEntry(14720) || // last area added in 10.0.7 (48520) - !sCharTitlesStore.LookupEntry(762) || // last char title added in 10.0.7 (48520) - !sGemPropertiesStore.LookupEntry(4059) || // last gem property added in 10.0.7 (48520) - !sItemStore.LookupEntry(205244) || // last item added in 10.0.7 (48520) - !sItemExtendedCostStore.LookupEntry(8043) || // last item extended cost added in 10.0.7 (48520) - !sMapStore.LookupEntry(2616) || // last map added in 10.0.7 (48520) - !sSpellNameStore.LookupEntry(409033)) // last spell added in 10.0.7 (48520) + if (!sAreaTableStore.LookupEntry(14483) || // last area added in 3.4.3 (51943) + !sCharTitlesStore.LookupEntry(757) || // last char title added in 3.4.3 (51943) + !sGemPropertiesStore.LookupEntry(1629) || // last gem property added in 3.4.3 (51943) + !sItemStore.LookupEntry(211851) || // last item added in 3.4.3 (51943) + !sItemExtendedCostStore.LookupEntry(8328) || // last item extended cost added in 3.4.3 (51943) + !sMapStore.LookupEntry(2567) || // last map added in 3.4.3 (51943) + !sSpellNameStore.LookupEntry(429548)) // last spell added in 3.4.3 (51943) { TC_LOG_ERROR("misc", "You have _outdated_ DB2 files. Please extract correct versions from current using client."); exit(1); diff --git a/src/server/game/DataStores/DB2Structure.h b/src/server/game/DataStores/DB2Structure.h index 8b02872a9ed..1de4537a3ed 100644 --- a/src/server/game/DataStores/DB2Structure.h +++ b/src/server/game/DataStores/DB2Structure.h @@ -66,7 +66,7 @@ struct AdventureJournalEntry uint8 ButtonActionType; int32 TextureFileDataID; uint16 LfgDungeonID; - int32 QuestID; + uint32 QuestID; uint16 BattleMasterListID; uint8 PriorityMin; uint8 PriorityMax; @@ -381,10 +381,10 @@ struct AzeritePowerEntry struct AzeritePowerSetMemberEntry { uint32 ID; - int32 AzeritePowerSetID; + uint32 AzeritePowerSetID; int32 AzeritePowerID; int32 Class; - int8 Tier; + uint8 Tier; int32 OrderIndex; }; @@ -445,7 +445,7 @@ struct BattlePetBreedQualityEntry { uint32 ID; float StateMultiplier; - int8 QualityEnum; + uint8 QualityEnum; }; struct BattlePetBreedStateEntry @@ -464,7 +464,7 @@ struct BattlePetSpeciesEntry int32 CreatureID; int32 SummonSpellID; int32 IconFileDataID; - int8 PetTypeEnum; + uint8 PetTypeEnum; int32 Flags; int8 SourceTypeEnum; int32 CardUIModelSceneID; @@ -769,8 +769,8 @@ struct ChrRacesEntry int32 CreateScreenFileDataID; int32 SelectScreenFileDataID; int32 LowResScreenFileDataID; - std::array<int32, 3> AlteredFormStartVisualKitID; - std::array<int32, 3> AlteredFormFinishVisualKitID; + std::array<uint32, 3> AlteredFormStartVisualKitID; + std::array<uint32, 3> AlteredFormFinishVisualKitID; int32 HeritageArmorAchievementID; int32 StartingLevel; int32 UiDisplayOrder; @@ -813,7 +813,7 @@ struct ChrSpecializationEntry LocalizedString FemaleName; LocalizedString Description; uint32 ID; - int8 ClassID; + uint8 ClassID; int8 OrderIndex; int8 PetTalentType; int8 Role; @@ -1353,20 +1353,20 @@ struct DestructibleModelDataEntry uint32 ID; int8 State0ImpactEffectDoodadSet; uint8 State0AmbientDoodadSet; - int32 State1Wmo; + uint32 State1Wmo; int8 State1DestructionDoodadSet; int8 State1ImpactEffectDoodadSet; uint8 State1AmbientDoodadSet; - int32 State2Wmo; + uint32 State2Wmo; int8 State2DestructionDoodadSet; int8 State2ImpactEffectDoodadSet; uint8 State2AmbientDoodadSet; - int32 State3Wmo; + uint32 State3Wmo; uint8 State3InitDoodadSet; uint8 State3AmbientDoodadSet; uint8 EjectDirection; uint8 DoNotHighlight; - int32 State0Wmo; + uint32 State0Wmo; uint8 HealEffect; uint16 HealEffectSpeed; int8 State0NameSet; @@ -1608,7 +1608,7 @@ struct GameObjectsEntry std::array<float, 4> Rot; uint32 ID; uint16 OwnerID; - int32 DisplayID; + uint32 DisplayID; float Scale; uint8 TypeID; uint8 PhaseUseFlags; @@ -1623,7 +1623,7 @@ struct GarrAbilityEntry LocalizedString Description; uint32 ID; uint8 GarrAbilityCategoryID; - int8 GarrFollowerTypeID; + uint8 GarrFollowerTypeID; int32 IconFileDataID; uint16 FactionChangeGarrAbilityID; uint16 Flags; @@ -1636,8 +1636,8 @@ struct GarrBuildingEntry LocalizedString AllianceName; LocalizedString Description; LocalizedString Tooltip; - int8 GarrTypeID; - int8 BuildingType; + uint8 GarrTypeID; + uint8 BuildingType; int32 HordeGameObjectID; int32 AllianceGameObjectID; uint8 GarrSiteID; @@ -1685,15 +1685,15 @@ struct GarrFollowerEntry LocalizedString AllianceSourceText; LocalizedString TitleName; uint32 ID; - int8 GarrTypeID; - int8 GarrFollowerTypeID; + uint8 GarrTypeID; + uint8 GarrFollowerTypeID; int32 HordeCreatureID; int32 AllianceCreatureID; uint8 HordeGarrFollRaceID; uint8 AllianceGarrFollRaceID; uint8 HordeGarrClassSpecID; uint8 AllianceGarrClassSpecID; - int8 Quality; + uint8 Quality; uint8 FollowerLevel; uint16 ItemLevelWeapon; uint16 ItemLevelArmor; @@ -1732,9 +1732,9 @@ struct GarrMissionEntry DBCPosition2D MapPos; DBCPosition2D WorldPos; uint32 ID; - int8 GarrTypeID; + uint8 GarrTypeID; uint8 GarrMissionTypeID; - int8 GarrFollowerTypeID; + uint8 GarrFollowerTypeID; uint8 MaxFollowers; uint32 MissionCost; uint16 MissionCostCurrencyTypesID; @@ -1753,8 +1753,8 @@ struct GarrMissionEntry uint32 OvermaxRewardPackID; uint8 FollowerDeathChance; uint32 AreaID; - int32 Flags; - int32 GarrMissionSetID; + uint32 Flags; + uint32 GarrMissionSetID; }; struct GarrPlotEntry @@ -2052,7 +2052,7 @@ struct ItemChildEquipmentEntry uint32 ID; int32 ChildItemID; uint8 ChildItemEquipSlot; - int32 ParentItemID; + uint32 ParentItemID; }; struct ItemClassEntry @@ -2139,7 +2139,7 @@ struct ItemEffectEntry uint16 SpellCategoryID; int32 SpellID; uint16 ChrSpecializationID; - int32 ParentItemID; + uint32 ParentItemID; }; #define MAX_ITEM_EXT_COST_ITEMS 5 @@ -2205,7 +2205,7 @@ struct ItemModifiedAppearanceEntry int32 ItemAppearanceModifierID; int32 ItemAppearanceID; int32 OrderIndex; - uint8 TransmogSourceTypeEnum; + int32 TransmogSourceTypeEnum; }; struct ItemModifiedAppearanceExtraEntry @@ -2471,7 +2471,7 @@ struct LFGDungeonsEntry uint8 MinLevel; uint16 MaxLevel; uint8 TypeID; - int8 Subtype; + uint8 Subtype; int8 Faction; int32 IconTextureFileID; int32 RewardsBgTextureFileID; @@ -2648,7 +2648,7 @@ struct MapDifficultyEntry { uint32 ID; LocalizedString Message; // m_message_lang (text showed when transfer to map failed) - int32 ItemContextPickerID; + uint32 ItemContextPickerID; int32 ContentTuningID; uint8 DifficultyID; uint8 LockID; @@ -2861,7 +2861,7 @@ struct PlayerConditionEntry uint32 AreaLogic; uint32 LfgLogic; uint32 CurrencyLogic; - int32 QuestKillID; + uint32 QuestKillID; uint32 QuestKillLogic; int8 MinExpansionLevel; int8 MaxExpansionLevel; @@ -2891,9 +2891,9 @@ struct PlayerConditionEntry std::array<uint16, 4> MaxSkill; std::array<uint32, 3> MinFactionID; std::array<uint8, 3> MinReputation; - std::array<int32, 4> PrevQuestID; - std::array<int32, 4> CurrQuestID; - std::array<int32, 4> CurrentCompletedQuestID; + std::array<uint32, 4> PrevQuestID; + std::array<uint32, 4> CurrQuestID; + std::array<uint32, 4> CurrentCompletedQuestID; std::array<int32, 4> SpellID; std::array<int32, 4> ItemID; std::array<uint32, 4> ItemCount; @@ -2984,7 +2984,7 @@ struct PvpTalentEntry { LocalizedString Description; uint32 ID; - int32 SpecID; + uint32 SpecID; int32 SpellID; int32 OverridesSpellID; int32 Flags; @@ -3016,7 +3016,7 @@ struct PvpTierEntry int16 MaxRating; int32 PrevTier; int32 NextTier; - int8 BracketID; + uint8 BracketID; int8 Rank; int32 RankIconFileDataID; }; @@ -3131,7 +3131,7 @@ struct ScenarioStepEntry LocalizedString Title; uint16 ScenarioID; uint32 Criteriatreeid; - int32 RewardQuestID; + uint32 RewardQuestID; int32 RelatedStep; // Bonus step can only be completed if scenario is in the step specified in this field uint16 Supersedes; // Used in conjunction with Proving Grounds scenarios, when sequencing steps (Not using step order?) uint8 OrderIndex; @@ -3224,7 +3224,7 @@ struct SkillLineAbilityEntry struct SkillLineXTraitTreeEntry { uint32 ID; - int32 SkillLineID; + uint32 SkillLineID; int32 TraitTreeID; int32 OrderIndex; }; @@ -3615,7 +3615,7 @@ struct SpellReagentsEntry struct SpellReagentsCurrencyEntry { uint32 ID; - int32 SpellID; + uint32 SpellID; uint16 CurrencyTypesID; uint16 CurrencyCount; }; @@ -3740,7 +3740,7 @@ struct SpellVisualMissileEntry uint32 Flags; uint16 SpellMissileMotionID; uint32 AnimKitID; - uint16 SpellVisualMissileSetID; + uint32 SpellVisualMissileSetID; }; struct SpellVisualKitEntry @@ -3800,9 +3800,9 @@ struct TalentEntry uint16 TabID; uint8 ClassID; uint16 SpecID; - uint32 SpellID; - uint32 OverridesSpellID; - uint32 RequiredSpellID; + int32 SpellID; + int32 OverridesSpellID; + int32 RequiredSpellID; std::array<int32, 2> CategoryMask; std::array<int32, 9> SpellRank; std::array<int32, 3> PrereqTalent; @@ -3817,7 +3817,7 @@ struct TaxiNodesEntry DBCPosition2D FlightMapOffset; uint32 ID; uint32 ContinentID; - int32 ConditionID; + uint32 ConditionID; uint16 CharacterBitNumber; int32 Flags; int32 UiTextureKitID; @@ -3861,8 +3861,8 @@ struct TaxiPathNodeEntry uint16 ContinentID; int32 Flags; uint32 Delay; - int32 ArrivalEventID; - int32 DepartureEventID; + uint32 ArrivalEventID; + uint32 DepartureEventID; }; struct TotemCategoryEntry @@ -3892,7 +3892,7 @@ struct TraitCondEntry { uint32 ID; int32 CondType; - int32 TraitTreeID; + uint32 TraitTreeID; int32 GrantedRanks; int32 QuestID; int32 AchievementID; @@ -3932,7 +3932,7 @@ struct TraitCurrencySourceEntry { LocalizedString Requirement; uint32 ID; - int32 TraitCurrencyID; + uint32 TraitCurrencyID; int32 Amount; int32 QuestID; int32 AchievementID; @@ -3956,7 +3956,7 @@ struct TraitDefinitionEntry struct TraitDefinitionEffectPointsEntry { uint32 ID; - int32 TraitDefinitionID; + uint32 TraitDefinitionID; int32 EffectIndex; int32 OperationType; int32 CurveID; @@ -3968,7 +3968,7 @@ struct TraitEdgeEntry { uint32 ID; int32 VisualStyle; - int32 LeftTraitNodeID; + uint32 LeftTraitNodeID; int32 RightTraitNodeID; int32 Type; }; @@ -3976,10 +3976,10 @@ struct TraitEdgeEntry struct TraitNodeEntry { uint32 ID; - int32 TraitTreeID; + uint32 TraitTreeID; int32 PosX; int32 PosY; - int8 Type; + uint8 Type; int32 Flags; TraitNodeType GetType() const { return static_cast<TraitNodeType>(Type); } @@ -4005,14 +4005,14 @@ struct TraitNodeEntryXTraitCondEntry struct TraitNodeEntryXTraitCostEntry { uint32 ID; - int32 TraitNodeEntryID; + uint32 TraitNodeEntryID; int32 TraitCostID; }; struct TraitNodeGroupEntry { uint32 ID; - int32 TraitTreeID; + uint32 TraitTreeID; int32 Flags; }; @@ -4020,20 +4020,20 @@ struct TraitNodeGroupXTraitCondEntry { uint32 ID; int32 TraitCondID; - int32 TraitNodeGroupID; + uint32 TraitNodeGroupID; }; struct TraitNodeGroupXTraitCostEntry { uint32 ID; - int32 TraitNodeGroupID; + uint32 TraitNodeGroupID; int32 TraitCostID; }; struct TraitNodeGroupXTraitNodeEntry { uint32 ID; - int32 TraitNodeGroupID; + uint32 TraitNodeGroupID; int32 TraitNodeID; int32 Index; }; @@ -4042,20 +4042,20 @@ struct TraitNodeXTraitCondEntry { uint32 ID; int32 TraitCondID; - int32 TraitNodeID; + uint32 TraitNodeID; }; struct TraitNodeXTraitCostEntry { uint32 ID; - int32 TraitNodeID; + uint32 TraitNodeID; int32 TraitCostID; }; struct TraitNodeXTraitNodeEntryEntry { uint32 ID; - int32 TraitNodeID; + uint32 TraitNodeID; int32 TraitNodeEntryID; int32 Index; }; @@ -4063,7 +4063,7 @@ struct TraitNodeXTraitNodeEntryEntry struct TraitTreeEntry { uint32 ID; - int32 TraitSystemID; + uint32 TraitSystemID; int32 Unused1000_1; int32 FirstTraitNodeID; int32 PlayerConditionID; @@ -4077,14 +4077,14 @@ struct TraitTreeEntry struct TraitTreeLoadoutEntry { uint32 ID; - int32 TraitTreeID; + uint32 TraitTreeID; int32 ChrSpecializationID; }; struct TraitTreeLoadoutEntryEntry { uint32 ID; - int32 TraitTreeLoadoutID; + uint32 TraitTreeLoadoutID; int32 SelectedTraitNodeID; int32 SelectedTraitNodeEntryID; int32 NumPoints; @@ -4102,7 +4102,7 @@ struct TraitTreeXTraitCurrencyEntry { uint32 ID; int32 Index; - int32 TraitTreeID; + uint32 TraitTreeID; int32 TraitCurrencyID; }; @@ -4157,7 +4157,7 @@ struct UiMapEntry uint32 ID; int32 ParentUiMapID; int32 Flags; - uint8 System; + int8 System; uint8 Type; int32 BountySetID; uint32 BountyDisplayLocation; @@ -4165,8 +4165,8 @@ struct UiMapEntry int32 VisibilityPlayerConditionID; // if not met then client checks other maps with the same AlternateUiMapGroup, not re-evaluating UiMapAssignment for them int8 HelpTextPosition; int32 BkgAtlasID; - int32 AlternateUiMapGroup; - int32 ContentTuningID; + uint32 AlternateUiMapGroup; + uint32 ContentTuningID; EnumFlag<UiMapFlag> GetFlags() const { return static_cast<UiMapFlag>(Flags); } }; diff --git a/src/server/game/DataStores/DBCEnums.h b/src/server/game/DataStores/DBCEnums.h index db4ef4082a2..c496247ebd7 100644 --- a/src/server/game/DataStores/DBCEnums.h +++ b/src/server/game/DataStores/DBCEnums.h @@ -58,7 +58,7 @@ enum LevelLimit enum BattlegroundBracketId // bracketId for level ranges { BG_BRACKET_ID_FIRST = 0, - BG_BRACKET_ID_LAST = 12, + BG_BRACKET_ID_LAST = 15, // must be max value in PvPDificulty slot + 1 MAX_BATTLEGROUND_BRACKETS @@ -2127,8 +2127,8 @@ enum class SummonPropertiesFlags : uint32 DEFINE_ENUM_FLAG(SummonPropertiesFlags); -#define MAX_TALENT_TIERS 7 -#define MAX_TALENT_COLUMNS 3 +#define MAX_TALENT_TIERS 11 +#define MAX_TALENT_COLUMNS 4 #define MAX_PVP_TALENT_SLOTS 4 enum class TaxiNodeFlags : int32 |
