DB Updates
This commit is contained in:
+1
-1
@@ -1,3 +1,3 @@
|
||||
-- TDB 1105.24111 characters
|
||||
-- TDB 1107.24121 characters
|
||||
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
|
||||
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/11.x/characters', 'ARCHIVED');
|
||||
@@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS `character_queststatus_objectives_spawn_tracking`;
|
||||
CREATE TABLE `character_queststatus_objectives_spawn_tracking` (
|
||||
`guid` BIGINT UNSIGNED NOT NULL,
|
||||
`quest` INT UNSIGNED NOT NULL,
|
||||
`objective` TINYINT UNSIGNED NOT NULL DEFAULT '0',
|
||||
`spawnTrackingId` INT UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (`guid`,`quest`,`objective`,`spawnTrackingId`)
|
||||
) ENGINE=INNODB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
Reference in New Issue
Block a user