DB Updates

This commit is contained in:
Hondacrx
2025-06-08 19:35:13 -04:00
parent efb7cda40b
commit 4214100d93
231 changed files with 468693 additions and 96638 deletions
@@ -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;