TDB 927.22111 - 2022/11/20

This commit is contained in:
TDB Release
2022-11-20 11:12:09 +00:00
parent deff234e8f
commit 85205d8ca5
317 changed files with 111 additions and 29 deletions

View File

@@ -1 +0,0 @@
ALTER TABLE `character_action` MODIFY `action` bigint unsigned NOT NULL DEFAULT 0;

View File

@@ -1,30 +0,0 @@
--
-- Table structure for table `character_instance_lock`
--
DROP TABLE IF EXISTS `character_instance_lock`;
CREATE TABLE `character_instance_lock` (
`guid` bigint unsigned NOT NULL,
`mapId` int unsigned NOT NULL,
`lockId` int unsigned NOT NULL,
`instanceId` int unsigned DEFAULT NULL,
`difficulty` tinyint unsigned DEFAULT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`completedEncountersMask` int unsigned DEFAULT NULL,
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
`expiryTime` bigint unsigned DEFAULT NULL,
`extended` tinyint unsigned DEFAULT NULL,
PRIMARY KEY (`guid`,`mapId`,`lockId`),
UNIQUE KEY `uk_character_instanceId` (`guid`,`instanceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Table structure for table `instance`
--
DROP TABLE IF EXISTS `instance`;
CREATE TABLE `instance` (
`instanceId` int unsigned NOT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`completedEncountersMask` int unsigned DEFAULT NULL,
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
PRIMARY KEY (`instanceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

View File

@@ -1,3 +0,0 @@
DROP TABLE IF EXISTS `character_instance`;
DROP TABLE IF EXISTS `group_instance`;
DROP TABLE IF EXISTS `instance_reset`;

View File

@@ -1 +0,0 @@
DROP TABLE IF EXISTS `instance_scenario_progress`;

View File

@@ -1,3 +1,3 @@
-- TDB 927.22082 characters
-- TDB 927.22111 characters
UPDATE `updates` SET `state`='ARCHIVED',`speed`=0;
REPLACE INTO `updates_include` (`path`, `state`) VALUES ('$/sql/old/9.x/characters', 'ARCHIVED');