TDB 927.22111 - 2022/11/20

Port From (https://github.com/TrinityCore/TrinityCore/commit/85205d8ca5d41e4eca09619ebf46d92e7b925aaa)
This commit is contained in:
hondacrx
2022-12-17 17:09:35 -05:00
parent 3b179a018e
commit a4ebb8455d
389 changed files with 86931 additions and 55 deletions
+96 -11
View File
@@ -1,8 +1,8 @@
-- MySQL dump 10.13 Distrib 8.0.30, for Linux (x86_64)
-- MySQL dump 10.13 Distrib 8.0.31, for Linux (x86_64)
--
-- Host: localhost Database: characters
-- ------------------------------------------------------
-- Server version 8.0.30-0ubuntu0.20.04.2
-- Server version 8.0.31-0ubuntu0.20.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -458,10 +458,11 @@ DROP TABLE IF EXISTS `character_action`;
CREATE TABLE `character_action` (
`guid` bigint unsigned NOT NULL DEFAULT '0',
`spec` tinyint unsigned NOT NULL DEFAULT '0',
`traitConfigId` int NOT NULL DEFAULT '0',
`button` tinyint unsigned NOT NULL DEFAULT '0',
`action` bigint unsigned NOT NULL DEFAULT '0',
`type` tinyint unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`,`spec`,`button`)
PRIMARY KEY (`guid`,`spec`,`traitConfigId`,`button`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1106,7 +1107,7 @@ CREATE TABLE `character_instance_lock` (
`lockId` int unsigned NOT NULL,
`instanceId` int unsigned DEFAULT NULL,
`difficulty` tinyint unsigned DEFAULT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`completedEncountersMask` int unsigned DEFAULT NULL,
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
`expiryTime` bigint unsigned DEFAULT NULL,
@@ -1138,7 +1139,7 @@ CREATE TABLE `character_inventory` (
`slot` tinyint unsigned NOT NULL DEFAULT '0',
`item` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Item Global Unique Identifier',
PRIMARY KEY (`item`),
UNIQUE KEY `guid` (`guid`,`bag`,`slot`),
UNIQUE KEY `uk_location` (`guid`,`bag`,`slot`),
KEY `idx_guid` (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -1624,6 +1625,30 @@ LOCK TABLES `character_spell_cooldown` WRITE;
/*!40000 ALTER TABLE `character_spell_cooldown` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_spell_favorite`
--
DROP TABLE IF EXISTS `character_spell_favorite`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_spell_favorite` (
`guid` bigint unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
`spell` int unsigned NOT NULL DEFAULT '0' COMMENT 'Spell Identifier',
PRIMARY KEY (`guid`,`spell`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Player System';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_spell_favorite`
--
LOCK TABLES `character_spell_favorite` WRITE;
/*!40000 ALTER TABLE `character_spell_favorite` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_spell_favorite` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_stats`
--
@@ -1699,6 +1724,63 @@ LOCK TABLES `character_talent` WRITE;
/*!40000 ALTER TABLE `character_talent` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_trait_config`
--
DROP TABLE IF EXISTS `character_trait_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_trait_config` (
`guid` bigint unsigned NOT NULL,
`traitConfigId` int NOT NULL,
`type` int NOT NULL,
`chrSpecializationId` int DEFAULT NULL,
`combatConfigFlags` int DEFAULT NULL,
`localIdentifier` int DEFAULT NULL,
`skillLineId` int DEFAULT NULL,
`traitSystemId` int DEFAULT NULL,
`name` varchar(260) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`guid`,`traitConfigId`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_trait_config`
--
LOCK TABLES `character_trait_config` WRITE;
/*!40000 ALTER TABLE `character_trait_config` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_trait_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_trait_entry`
--
DROP TABLE IF EXISTS `character_trait_entry`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `character_trait_entry` (
`guid` bigint unsigned NOT NULL,
`traitConfigId` int NOT NULL,
`traitNodeId` int NOT NULL,
`traitNodeEntryId` int NOT NULL,
`rank` int NOT NULL DEFAULT '0',
`grantedRanks` int NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`,`traitConfigId`,`traitNodeId`,`traitNodeEntryId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `character_trait_entry`
--
LOCK TABLES `character_trait_entry` WRITE;
/*!40000 ALTER TABLE `character_trait_entry` DISABLE KEYS */;
/*!40000 ALTER TABLE `character_trait_entry` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `character_transmog_outfits`
--
@@ -2570,7 +2652,7 @@ DROP TABLE IF EXISTS `instance`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `instance` (
`instanceId` int unsigned NOT NULL,
`data` text COLLATE utf8mb4_unicode_ci,
`data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`completedEncountersMask` int unsigned DEFAULT NULL,
`entranceWorldSafeLocId` int unsigned DEFAULT NULL,
PRIMARY KEY (`instanceId`)
@@ -3602,10 +3684,13 @@ INSERT INTO `updates` VALUES
('2022_07_25_00_characters.sql','3159BB2F3C346A7881920AB2B1F8108247CF13EE','ARCHIVED','2022-07-25 18:44:10',0),
('2022_08_19_00_characters.sql','1C076A24F2B48F32E8EF835C01F8907CA9E86491','ARCHIVED','2022-08-19 23:43:01',0),
('2022_08_21_00_characters.sql','1D75688392FBDA18CD8494F32CF682DCB49642EC','ARCHIVED','2022-08-21 00:02:03',0),
('2022_09_18_00_characters.sql','A7DF0C1F0E074F3E63A6CDD0AF873A1F3DC33B29','RELEASED','2022-09-18 21:48:42',0),
('2022_10_03_00_characters.sql','7B062787230D9158A622EB4AFE7FA6D18AB47BB3','RELEASED','2022-10-03 22:32:58',0),
('2022_10_03_01_characters.sql','7CF58BD9CC366301CC992017028568C8774C4BC2','RELEASED','2022-10-03 22:36:38',0),
('2022_10_03_02_characters.sql','33135AB3132943F15F4849A16EC5EFEA402F24F6','RELEASED','2022-10-03 22:38:27',0);
('2022_09_18_00_characters.sql','A7DF0C1F0E074F3E63A6CDD0AF873A1F3DC33B29','ARCHIVED','2022-09-18 21:48:42',0),
('2022_10_03_00_characters.sql','7B062787230D9158A622EB4AFE7FA6D18AB47BB3','ARCHIVED','2022-10-03 22:32:58',0),
('2022_10_03_01_characters.sql','7CF58BD9CC366301CC992017028568C8774C4BC2','ARCHIVED','2022-10-03 22:36:38',0),
('2022_10_03_02_characters.sql','33135AB3132943F15F4849A16EC5EFEA402F24F6','ARCHIVED','2022-10-03 22:38:27',0),
('2022_11_20_00_characters.sql','4EB8BB24CAF16B0962DF3EF92C77BE05E234CFA6','ARCHIVED','2022-11-20 11:05:20',0),
('2022_12_16_00_characters.sql','ABD1E101FE6629E0520C91E98942E55067EDD492','RELEASED','2022-12-16 22:52:19',0),
('2022_12_17_00_characters.sql','3E005BD6B9C60653749B0B3C19CBC497092B9CCB','RELEASED','2022-12-17 18:26:43',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;
@@ -3731,4 +3816,4 @@ UNLOCK TABLES;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2022-08-21 0:02:06
-- Dump completed on 2022-11-20 11:05:23