chore(DB): import pending files

Referenced commit(s): a6a2ca8ef7
This commit is contained in:
AzerothCoreBot
2022-05-24 13:35:53 +00:00
parent a6a2ca8ef7
commit a4af113685
2 changed files with 2 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
-- DB update 2022_04_28_00 -> 2022_05_24_00
DROP TABLE IF EXISTS `instance_saved_go_state_data`;
CREATE TABLE IF NOT EXISTS `instance_saved_go_state_data` (
`id` INT UNSIGNED NOT NULL COMMENT 'instance.id',
`guid` INT UNSIGNED NOT NULL COMMENT 'gameobject.guid',
`state` TINYINT UNSIGNED DEFAULT '0' COMMENT 'gameobject.state',
PRIMARY KEY (`id`, `guid`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;