aboutsummaryrefslogtreecommitdiff
path: root/sql/base/dev
diff options
context:
space:
mode:
authorTDB Release <tdb-release@build.bot>2019-08-16 06:27:38 +0000
committerTDB Release <tdb-release@build.bot>2019-08-16 06:27:38 +0000
commita054ce864d29127cef2cb68e1c19328e28e5e90b (patch)
tree2093ec2e37282b3270248aee790b3d748ab00c59 /sql/base/dev
parent43c08b176115505b76c027667047f9a5bfcc4e11 (diff)
TDB 335.19081 - 2019/08/16TDB335.19081
Diffstat (limited to 'sql/base/dev')
-rw-r--r--sql/base/dev/world_database.sql114
1 files changed, 56 insertions, 58 deletions
diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql
index 32d12d9dcb5..82243763ca4 100644
--- a/sql/base/dev/world_database.sql
+++ b/sql/base/dev/world_database.sql
@@ -2262,6 +2262,21 @@ CREATE TABLE `player_levelstats` (
/*!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',
- `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',
+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 (`entry`),
- KEY `idx_guid` (`entry`)
+ PRIMARY KEY (`type`,`spawnId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -2669,6 +2635,37 @@ CREATE TABLE `quest_poi_points` (
/*!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