mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-13 09:17:18 +00:00
9
data/sql/updates/db_characters/2022_05_24_00.sql
Normal file
9
data/sql/updates/db_characters/2022_05_24_00.sql
Normal 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;
|
||||
Reference in New Issue
Block a user