TDB 434.20051 - 2020/05/19

This commit is contained in:
TDB Release
2020-05-19 01:46:14 +00:00
parent c62ebf6e36
commit e51f48c576
84 changed files with 400 additions and 313 deletions

View File

@@ -1,46 +1,79 @@
-- MySQL dump 10.13 Distrib 5.7.29, for Linux (x86_64)
--
-- Host: localhost Database: hotfixes
-- ------------------------------------------------------
-- Server version 5.7.29-0ubuntu0.18.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
/*Table structure for table `hotfix_data` */
--
-- Table structure for table `hotfix_data`
--
DROP TABLE IF EXISTS `hotfix_data`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `hotfix_data` (
`TableHash` int(10) unsigned NOT NULL DEFAULT '0',
`RecordID` int(10) NOT NULL,
`Timestamp` int(10) unsigned NOT NULL DEFAULT '0',
`Deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`TableHash`,`RecordID`,`Timestamp`)
PRIMARY KEY (`TableHash`,`RecordID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `item` */
--
-- Table structure for table `item`
--
DROP TABLE IF EXISTS `item`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Class` int(10) unsigned NOT NULL DEFAULT '0',
`SubClass` int(10) unsigned NOT NULL DEFAULT '0',
`SoundOverrideSubclass` int(11) NOT NULL DEFAULT '0',
`ClassID` int(10) unsigned NOT NULL DEFAULT '0',
`SubclassID` int(10) unsigned NOT NULL DEFAULT '0',
`SoundOverrideSubclassID` int(11) NOT NULL DEFAULT '0',
`Material` int(11) NOT NULL DEFAULT '0',
`DisplayInfoID` int(10) unsigned NOT NULL DEFAULT '0',
`InventoryType` int(10) unsigned NOT NULL DEFAULT '0',
`Sheath` int(10) unsigned NOT NULL DEFAULT '0',
`SheatheType` int(10) unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `item_currency_cost` */
--
-- Table structure for table `item_currency_cost`
--
DROP TABLE IF EXISTS `item_currency_cost`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_currency_cost` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`ItemId` int(10) unsigned NOT NULL DEFAULT '0',
`ItemID` int(10) unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`),
UNIQUE KEY `idx_itemId` (`ItemId`)
UNIQUE KEY `idx_itemId` (`ItemID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `item_extended_cost` */
--
-- Table structure for table `item_extended_cost`
--
DROP TABLE IF EXISTS `item_extended_cost`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_extended_cost` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredHonorPoints` int(10) unsigned NOT NULL DEFAULT '0',
@@ -75,16 +108,22 @@ CREATE TABLE `item_extended_cost` (
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `item_sparse` */
--
-- Table structure for table `item_sparse`
--
DROP TABLE IF EXISTS `item_sparse`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_sparse` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Quality` int(10) unsigned NOT NULL DEFAULT '0',
`Flags1` int(10) unsigned NOT NULL DEFAULT '0',
`Flags2` int(10) unsigned NOT NULL DEFAULT '0',
`Unk1` float NOT NULL DEFAULT '0',
`Unk2` float NOT NULL DEFAULT '0',
`PriceRandomValue` float NOT NULL DEFAULT '0',
`PriceVariance` float NOT NULL DEFAULT '0',
`BuyCount` int(10) unsigned NOT NULL DEFAULT '0',
`BuyPrice` int(10) unsigned NOT NULL DEFAULT '0',
`SellPrice` int(10) unsigned NOT NULL DEFAULT '0',
@@ -95,13 +134,13 @@ CREATE TABLE `item_sparse` (
`RequiredLevel` int(11) NOT NULL DEFAULT '0',
`RequiredSkill` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredSkillRank` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredSpell` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredSpell` int(11) NOT NULL DEFAULT '0',
`RequiredHonorRank` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredCityRank` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredReputationFaction` int(10) unsigned NOT NULL DEFAULT '0',
`RequiredReputationRank` int(10) unsigned NOT NULL DEFAULT '0',
`MaxCount` int(10) unsigned NOT NULL DEFAULT '0',
`Stackable` int(10) unsigned NOT NULL DEFAULT '0',
`MaxCount` int(11) NOT NULL DEFAULT '0',
`Stackable` int(11) NOT NULL DEFAULT '0',
`ContainerSlots` int(10) unsigned NOT NULL DEFAULT '0',
`ItemStatType1` int(11) NOT NULL DEFAULT '0',
`ItemStatType2` int(11) NOT NULL DEFAULT '0',
@@ -133,18 +172,18 @@ CREATE TABLE `item_sparse` (
`ItemStatAllocation8` int(11) NOT NULL DEFAULT '0',
`ItemStatAllocation9` int(11) NOT NULL DEFAULT '0',
`ItemStatAllocation10` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier1` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier2` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier3` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier4` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier5` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier6` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier7` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier8` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier9` float NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier10` float NOT NULL DEFAULT '0',
`ScalingStatDistribution` int(10) unsigned NOT NULL DEFAULT '0',
`DamageType` int(10) unsigned NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier1` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier2` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier3` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier4` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier5` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier6` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier7` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier8` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier9` int(11) NOT NULL DEFAULT '0',
`ItemStatSocketCostMultiplier10` int(11) NOT NULL DEFAULT '0',
`ScalingStatDistribution` int(11) NOT NULL DEFAULT '0',
`DamageType` int(11) NOT NULL DEFAULT '0',
`Delay` int(10) unsigned NOT NULL DEFAULT '0',
`RangedModRange` float NOT NULL DEFAULT '0',
`SpellID1` int(11) NOT NULL DEFAULT '0',
@@ -177,61 +216,73 @@ CREATE TABLE `item_sparse` (
`SpellCategoryCooldown3` int(11) NOT NULL DEFAULT '0',
`SpellCategoryCooldown4` int(11) NOT NULL DEFAULT '0',
`SpellCategoryCooldown5` int(11) NOT NULL DEFAULT '0',
`Bonding` int(10) unsigned NOT NULL DEFAULT '0',
`Name` text,
`Name2` text,
`Name3` text,
`Name4` text,
`Bonding` int(11) NOT NULL DEFAULT '0',
`Display` text,
`Display1` text,
`Display2` text,
`Display3` text,
`Description` text,
`PageText` int(10) unsigned NOT NULL DEFAULT '0',
`LanguageID` int(10) unsigned NOT NULL DEFAULT '0',
`PageMaterial` int(10) unsigned NOT NULL DEFAULT '0',
`StartQuest` int(10) unsigned NOT NULL DEFAULT '0',
`LanguageID` int(11) NOT NULL DEFAULT '0',
`PageMaterial` int(11) NOT NULL DEFAULT '0',
`StartQuest` int(11) NOT NULL DEFAULT '0',
`LockID` int(10) unsigned NOT NULL DEFAULT '0',
`Material` int(11) NOT NULL DEFAULT '0',
`Sheath` int(10) unsigned NOT NULL DEFAULT '0',
`RandomProperty` int(10) unsigned NOT NULL DEFAULT '0',
`SheatheType` int(11) NOT NULL DEFAULT '0',
`RandomProperty` int(11) NOT NULL DEFAULT '0',
`RandomSuffix` int(10) unsigned NOT NULL DEFAULT '0',
`ItemSet` int(10) unsigned NOT NULL DEFAULT '0',
`Area` int(10) unsigned NOT NULL DEFAULT '0',
`Map` int(10) unsigned NOT NULL DEFAULT '0',
`BagFamily` int(10) unsigned NOT NULL DEFAULT '0',
`TotemCategory` int(10) unsigned NOT NULL DEFAULT '0',
`SocketColor1` int(10) unsigned NOT NULL DEFAULT '0',
`SocketColor2` int(10) unsigned NOT NULL DEFAULT '0',
`SocketColor3` int(10) unsigned NOT NULL DEFAULT '0',
`AreaID` int(10) unsigned NOT NULL DEFAULT '0',
`MapID` int(11) NOT NULL DEFAULT '0',
`BagFamily` int(11) NOT NULL DEFAULT '0',
`TotemCategory` int(11) NOT NULL DEFAULT '0',
`SocketColor1` int(11) NOT NULL DEFAULT '0',
`SocketColor2` int(11) NOT NULL DEFAULT '0',
`SocketColor3` int(11) NOT NULL DEFAULT '0',
`Content1` int(10) unsigned NOT NULL DEFAULT '0',
`Content2` int(10) unsigned NOT NULL DEFAULT '0',
`Content3` int(10) unsigned NOT NULL DEFAULT '0',
`SocketBonus` int(11) NOT NULL DEFAULT '0',
`GemProperties` int(10) unsigned NOT NULL DEFAULT '0',
`GemProperties` int(11) NOT NULL DEFAULT '0',
`ArmorDamageModifier` float NOT NULL DEFAULT '0',
`Duration` int(10) unsigned NOT NULL DEFAULT '0',
`ItemLimitCategory` int(10) unsigned NOT NULL DEFAULT '0',
`HolidayID` int(10) unsigned NOT NULL DEFAULT '0',
`Duration` int(11) NOT NULL DEFAULT '0',
`ItemLimitCategory` int(11) NOT NULL DEFAULT '0',
`HolidayID` int(11) NOT NULL DEFAULT '0',
`StatScalingFactor` float NOT NULL DEFAULT '0',
`CurrencySubstitutionID` int(10) NOT NULL DEFAULT '0',
`CurrencySubstitutionCount` int(10) NOT NULL DEFAULT '0',
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `item_sparse_locale` */
--
-- Table structure for table `item_sparse_locale`
--
DROP TABLE IF EXISTS `item_sparse_locale`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `item_sparse_locale` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) NOT NULL,
`Name_lang` text,
`Name2_lang` text,
`Name3_lang` text,
`Name4_lang` text,
`Display_lang` text,
`Display1_lang` text,
`Display2_lang` text,
`Display3_lang` text,
`Description_lang` text,
`VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`locale`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `key_chain` */
--
-- Table structure for table `key_chain`
--
DROP TABLE IF EXISTS `key_chain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `key_chain` (
`ID` int(10) unsigned NOT NULL DEFAULT '0',
`Key1` tinyint(3) unsigned NOT NULL DEFAULT '0',
@@ -268,9 +319,15 @@ CREATE TABLE `key_chain` (
`Key32` tinyint(3) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `updates` */
--
-- Table structure for table `updates`
--
DROP TABLE IF EXISTS `updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `updates` (
`name` varchar(200) NOT NULL COMMENT 'filename with extension of the update.',
`hash` char(40) DEFAULT '' COMMENT 'sha1 hash of the sql file.',
@@ -279,15 +336,29 @@ CREATE TABLE `updates` (
`speed` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'time the query takes to apply in ms.',
PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of all applied updates in this database.';
/*!40101 SET character_set_client = @saved_cs_client */;
/*Table structure for table `updates_include` */
--
-- Table structure for table `updates_include`
--
DROP TABLE IF EXISTS `updates_include`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `updates_include` (
`path` varchar(200) NOT NULL COMMENT 'directory to include. $ means relative to the source directory.',
`state` enum('RELEASED','ARCHIVED') NOT NULL DEFAULT 'RELEASED' COMMENT 'defines if the directory contains released or archived updates.',
PRIMARY KEY (`path`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='List of directories where we want to include sql updates.';
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2020-05-19 1:44:37