mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-15 23:20:36 +01:00
TDB 837.20101 - 2020/10/20
This commit is contained in:
@@ -7966,6 +7966,10 @@ CREATE TABLE `world_state_expression` (
|
||||
PRIMARY KEY (`ID`,`VerifiedBuild`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping routines for database 'hotfixes'
|
||||
--
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
@@ -7976,4 +7980,4 @@ CREATE TABLE `world_state_expression` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2020-08-14 21:41:28
|
||||
-- Dump completed on 2020-10-20 21:36:54
|
||||
|
||||
@@ -1299,7 +1299,7 @@ CREATE TABLE `game_tele` (
|
||||
`map` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`name` varchar(100) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=1679 DEFAULT CHARSET=utf8 COMMENT='Tele Command';
|
||||
) ENGINE=MyISAM AUTO_INCREMENT=1683 DEFAULT CHARSET=utf8 COMMENT='Tele Command';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
@@ -1732,6 +1732,23 @@ CREATE TABLE `instance_encounters` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `instance_spawn_groups`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `instance_spawn_groups`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `instance_spawn_groups` (
|
||||
`instanceMapId` smallint(5) unsigned NOT NULL,
|
||||
`bossStateId` tinyint(3) unsigned NOT NULL,
|
||||
`bossStates` tinyint(3) unsigned NOT NULL,
|
||||
`spawnGroupId` int(10) unsigned NOT NULL,
|
||||
`flags` tinyint(3) unsigned NOT NULL,
|
||||
PRIMARY KEY (`instanceMapId`,`bossStateId`,`spawnGroupId`,`bossStates`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `instance_template`
|
||||
--
|
||||
@@ -3474,6 +3491,36 @@ CREATE TABLE `smart_scripts` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `spawn_group`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `spawn_group`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `spawn_group` (
|
||||
`groupId` int(10) unsigned NOT NULL,
|
||||
`spawnType` tinyint(10) unsigned NOT NULL,
|
||||
`spawnId` bigint(20) unsigned NOT NULL,
|
||||
PRIMARY KEY (`groupId`,`spawnType`,`spawnId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `spawn_group_template`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `spawn_group_template`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `spawn_group_template` (
|
||||
`groupId` int(10) unsigned NOT NULL,
|
||||
`groupName` varchar(100) NOT NULL,
|
||||
`groupFlags` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`groupId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `spell_area`
|
||||
--
|
||||
@@ -4203,6 +4250,10 @@ CREATE TABLE `world_safe_locs` (
|
||||
PRIMARY KEY (`ID`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping routines for database 'world'
|
||||
--
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
@@ -4213,4 +4264,4 @@ CREATE TABLE `world_safe_locs` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2020-08-14 21:41:27
|
||||
-- Dump completed on 2020-10-20 21:36:52
|
||||
|
||||
Reference in New Issue
Block a user