mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-20 17:27:36 +01:00
Scripts/InstanceScript: Implement database framework for managing spawn groups based on boss state. (#20103)
(cherry picked from commit 84590be26d)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
--
|
||||
DROP TABLE IF EXISTS `instance_spawn_groups`;
|
||||
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;
|
||||
Reference in New Issue
Block a user