TDB 335.19081 - 2019/08/16

This commit is contained in:
TDB Release
2019-08-16 06:27:38 +00:00
parent 43c08b1761
commit a054ce864d
127 changed files with 126 additions and 120 deletions

View File

@@ -2261,6 +2261,21 @@ CREATE TABLE `player_levelstats` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8 PACK_KEYS=0 COMMENT='Stores levels stats.';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `player_totem_model`
--
DROP TABLE IF EXISTS `player_totem_model`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `player_totem_model` (
`TotemSlot` tinyint(3) unsigned NOT NULL,
`RaceId` tinyint(3) unsigned NOT NULL,
`DisplayId` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`TotemSlot`,`RaceId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `player_xp_for_level`
--
@@ -2415,68 +2430,19 @@ CREATE TABLE `points_of_interest_locale` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `pool_creature`
-- Table structure for table `pool_members`
--
DROP TABLE IF EXISTS `pool_creature`;
DROP TABLE IF EXISTS `pool_members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_creature` (
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
CREATE TABLE `pool_members` (
`type` smallint(10) unsigned NOT NULL,
`spawnId` int(10) unsigned NOT NULL,
`poolSpawnId` int(10) unsigned NOT NULL,
`chance` double unsigned NOT NULL,
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`guid`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `pool_gameobject`
--
DROP TABLE IF EXISTS `pool_gameobject`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_gameobject` (
`guid` int(10) unsigned NOT NULL DEFAULT '0',
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float unsigned NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`guid`),
KEY `idx_guid` (`guid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `pool_pool`
--
DROP TABLE IF EXISTS `pool_pool`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_pool` (
`pool_id` mediumint(8) unsigned NOT NULL DEFAULT '0',
`mother_pool` mediumint(8) unsigned NOT NULL DEFAULT '0',
`chance` float NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pool_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `pool_quest`
--
DROP TABLE IF EXISTS `pool_quest`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pool_quest` (
`entry` int(10) unsigned NOT NULL DEFAULT '0',
`pool_entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`entry`),
KEY `idx_guid` (`entry`)
PRIMARY KEY (`type`,`spawnId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -2668,6 +2634,37 @@ CREATE TABLE `quest_poi_points` (
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `quest_pool_members`
--
DROP TABLE IF EXISTS `quest_pool_members`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quest_pool_members` (
`questId` int(10) unsigned NOT NULL,
`poolId` int(10) unsigned NOT NULL,
`poolIndex` tinyint(2) unsigned NOT NULL COMMENT 'Multiple quests with the same index will always spawn together!',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`questId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `quest_pool_template`
--
DROP TABLE IF EXISTS `quest_pool_template`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `quest_pool_template` (
`poolId` mediumint(8) unsigned NOT NULL,
`numActive` int(10) unsigned NOT NULL COMMENT 'Number of indices to have active at any time',
`description` varchar(255) DEFAULT NULL,
PRIMARY KEY (`poolId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `quest_request_items`
--
@@ -2952,6 +2949,7 @@ CREATE TABLE `script_spline_chain_meta` (
`splineId` tinyint(3) unsigned NOT NULL,
`expectedDuration` int(10) unsigned NOT NULL,
`msUntilNext` int(10) unsigned NOT NULL,
`velocity` float unsigned DEFAULT '0',
PRIMARY KEY (`entry`,`chainId`,`splineId`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -3844,4 +3842,4 @@ CREATE TABLE `waypoints` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2019-07-15 5:57:44
-- Dump completed on 2019-08-16 6:25:11