mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04:00
TDB 1002.22121 - 2022/12/20
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
--
|
||||
-- Host: localhost Database: world
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.0.31-0ubuntu0.20.04.1
|
||||
-- Server version 8.0.31-0ubuntu0.20.04.2
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
@@ -948,7 +948,7 @@ CREATE TABLE `creature_template` (
|
||||
`WidgetSetID` int NOT NULL DEFAULT '0',
|
||||
`WidgetSetUnitConditionID` int NOT NULL DEFAULT '0',
|
||||
`RegenHealth` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`mechanic_immune_mask` int unsigned NOT NULL DEFAULT '0',
|
||||
`mechanic_immune_mask` bigint unsigned NOT NULL DEFAULT '0',
|
||||
`spell_school_immune_mask` int unsigned NOT NULL DEFAULT '0',
|
||||
`flags_extra` int unsigned NOT NULL DEFAULT '0',
|
||||
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
@@ -1866,33 +1866,22 @@ DROP TABLE IF EXISTS `gossip_menu_option`;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `gossip_menu_option` (
|
||||
`MenuID` int unsigned NOT NULL DEFAULT '0',
|
||||
`GossipOptionID` int NOT NULL DEFAULT '0',
|
||||
`OptionID` int unsigned NOT NULL DEFAULT '0',
|
||||
`OptionNpc` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`OptionText` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OptionBroadcastTextID` int unsigned NOT NULL DEFAULT '0',
|
||||
`Language` int unsigned NOT NULL DEFAULT '0',
|
||||
`Flags` int NOT NULL DEFAULT '0',
|
||||
`ActionMenuID` int unsigned NOT NULL DEFAULT '0',
|
||||
`ActionPoiID` int unsigned NOT NULL DEFAULT '0',
|
||||
`GossipNpcOptionID` int DEFAULT NULL,
|
||||
`BoxCoded` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`BoxMoney` int unsigned NOT NULL DEFAULT '0',
|
||||
`BoxText` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`BoxBroadcastTextID` int unsigned NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`MenuID`,`OptionID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `gossip_menu_option_addon`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `gossip_menu_option_addon`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `gossip_menu_option_addon` (
|
||||
`MenuID` int unsigned NOT NULL DEFAULT '0',
|
||||
`OptionID` int unsigned NOT NULL DEFAULT '0',
|
||||
`GarrTalentTreeID` int DEFAULT NULL,
|
||||
`SpellID` int DEFAULT NULL,
|
||||
`OverrideIconID` int DEFAULT NULL,
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`MenuID`,`OptionID`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
@@ -2950,6 +2939,44 @@ CREATE TABLE `prospecting_loot_template` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Loot System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_completion_log_conditional`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_completion_log_conditional`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_completion_log_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_description_conditional`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_description_conditional`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_description_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_details`
|
||||
--
|
||||
@@ -3086,6 +3113,25 @@ CREATE TABLE `quest_offer_reward` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_offer_reward_conditional`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_offer_reward_conditional`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_offer_reward_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_offer_reward_locale`
|
||||
--
|
||||
@@ -3201,6 +3247,25 @@ CREATE TABLE `quest_request_items` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_request_items_conditional`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_request_items_conditional`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_request_items_conditional` (
|
||||
`QuestId` int NOT NULL,
|
||||
`PlayerConditionId` int NOT NULL,
|
||||
`QuestgiverCreatureId` int NOT NULL,
|
||||
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
|
||||
`Text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`OrderIndex` int NOT NULL DEFAULT '0',
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestId`,`PlayerConditionId`,`QuestgiverCreatureId`,`locale`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_request_items_locale`
|
||||
--
|
||||
@@ -3717,6 +3782,10 @@ CREATE TABLE `serverside_spell` (
|
||||
`TargetAuraSpell` int unsigned NOT NULL DEFAULT '0',
|
||||
`ExcludeCasterAuraSpell` int unsigned NOT NULL DEFAULT '0',
|
||||
`ExcludeTargetAuraSpell` int unsigned NOT NULL DEFAULT '0',
|
||||
`CasterAuraType` int NOT NULL DEFAULT '0',
|
||||
`TargetAuraType` int NOT NULL DEFAULT '0',
|
||||
`ExcludeCasterAuraType` int NOT NULL DEFAULT '0',
|
||||
`ExcludeTargetAuraType` int NOT NULL DEFAULT '0',
|
||||
`CastingTimeIndex` int unsigned NOT NULL DEFAULT '1',
|
||||
`RecoveryTime` int unsigned NOT NULL DEFAULT '0',
|
||||
`CategoryRecoveryTime` int unsigned NOT NULL DEFAULT '0',
|
||||
@@ -4796,4 +4865,4 @@ CREATE TABLE `world_state` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2022-11-20 11:05:24
|
||||
-- Dump completed on 2022-12-20 3:10:14
|
||||
|
||||
Reference in New Issue
Block a user