parent
a6a2ca8ef7
commit
a4af113685
2 changed files with 2 additions and 0 deletions
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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue