DB Updates

This commit is contained in:
hondacrx
2024-02-06 22:13:53 -05:00
parent 6abce678ca
commit 095fb9206e
527 changed files with 525506 additions and 90 deletions
+115 -20
View File
@@ -1,8 +1,8 @@
-- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64)
-- MySQL dump 10.13 Distrib 8.0.34, for Linux (x86_64)
--
-- Host: localhost Database: hotfixes
-- ------------------------------------------------------
-- Server version 8.0.33-0ubuntu0.20.04.2
-- Server version 8.0.34-0ubuntu0.20.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -375,7 +375,7 @@ CREATE TABLE `area_trigger` (
`PosZ` float NOT NULL DEFAULT '0',
`ID` int unsigned NOT NULL DEFAULT '0',
`ContinentID` smallint NOT NULL DEFAULT '0',
`PhaseUseFlags` tinyint NOT NULL DEFAULT '0',
`PhaseUseFlags` int NOT NULL DEFAULT '0',
`PhaseID` smallint NOT NULL DEFAULT '0',
`PhaseGroupID` smallint NOT NULL DEFAULT '0',
`Radius` float NOT NULL DEFAULT '0',
@@ -1118,8 +1118,8 @@ DROP TABLE IF EXISTS `battle_pet_ability`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `battle_pet_ability` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Name` text COLLATE utf8mb4_unicode_ci,
`Description` text COLLATE utf8mb4_unicode_ci,
`Name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`Description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`IconFileDataID` int NOT NULL DEFAULT '0',
`PetTypeEnum` tinyint NOT NULL DEFAULT '0',
`Cooldown` int unsigned NOT NULL DEFAULT '0',
@@ -1139,9 +1139,9 @@ DROP TABLE IF EXISTS `battle_pet_ability_locale`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `battle_pet_ability_locale` (
`ID` int unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL,
`Name_lang` text COLLATE utf8mb4_unicode_ci,
`Description_lang` text COLLATE utf8mb4_unicode_ci,
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`Name_lang` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`Description_lang` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
@@ -1413,6 +1413,53 @@ CREATE TABLE `broadcast_text_locale` (
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cfg_categories`
--
DROP TABLE IF EXISTS `cfg_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cfg_categories` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`LocaleMask` smallint unsigned NOT NULL DEFAULT '0',
`CreateCharsetMask` tinyint unsigned NOT NULL DEFAULT '0',
`ExistingCharsetMask` tinyint unsigned NOT NULL DEFAULT '0',
`Flags` tinyint unsigned NOT NULL DEFAULT '0',
`Order` tinyint NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cfg_categories_locale`
--
DROP TABLE IF EXISTS `cfg_categories_locale`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cfg_categories_locale` (
`ID` int unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`Name_lang` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
/*!50500 PARTITION BY LIST COLUMNS(locale)
(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `cfg_regions`
--
@@ -1622,7 +1669,6 @@ CREATE TABLE `chr_classes` (
`LowResScreenFileDataID` int unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`SpellTextureBlobFileDataID` int unsigned NOT NULL DEFAULT '0',
`RolesMask` int unsigned NOT NULL DEFAULT '0',
`ArmorTypeMask` int unsigned NOT NULL DEFAULT '0',
`CharStartKitUnknown901` int NOT NULL DEFAULT '0',
`MaleCharacterCreationVisualFallback` int NOT NULL DEFAULT '0',
@@ -1644,6 +1690,7 @@ CREATE TABLE `chr_classes` (
`ClassColorR` tinyint unsigned NOT NULL DEFAULT '0',
`ClassColorG` tinyint unsigned NOT NULL DEFAULT '0',
`ClassColorB` tinyint unsigned NOT NULL DEFAULT '0',
`RolesMask` tinyint unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -1764,6 +1811,7 @@ CREATE TABLE `chr_customization_display_info` (
`DisplayID` int NOT NULL DEFAULT '0',
`BarberShopMinCameraDistance` float NOT NULL DEFAULT '0',
`BarberShopHeightOffset` float NOT NULL DEFAULT '0',
`BarberShopCameraZoomOffset` float NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -1789,6 +1837,8 @@ CREATE TABLE `chr_customization_element` (
`ChrCustItemGeoModifyID` int NOT NULL DEFAULT '0',
`ChrCustomizationVoiceID` int NOT NULL DEFAULT '0',
`AnimKitID` int NOT NULL DEFAULT '0',
`ParticleColorID` int NOT NULL DEFAULT '0',
`ChrCustGeoComponentLinkID` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -2286,6 +2336,7 @@ DROP TABLE IF EXISTS `conversation_line`;
CREATE TABLE `conversation_line` (
`ID` int unsigned NOT NULL DEFAULT '0',
`BroadcastTextID` int unsigned NOT NULL DEFAULT '0',
`Unused1020` int unsigned NOT NULL DEFAULT '0',
`SpellVisualKitID` int unsigned NOT NULL DEFAULT '0',
`AdditionalDuration` int NOT NULL DEFAULT '0',
`NextConversationLineID` smallint unsigned NOT NULL DEFAULT '0',
@@ -2505,6 +2556,8 @@ CREATE TABLE `creature_model_data` (
`GeoBox6` float NOT NULL DEFAULT '0',
`Flags` int unsigned NOT NULL DEFAULT '0',
`FileDataID` int unsigned NOT NULL DEFAULT '0',
`WalkSpeed` float NOT NULL DEFAULT '0',
`RunSpeed` float NOT NULL DEFAULT '0',
`BloodID` int unsigned NOT NULL DEFAULT '0',
`FootprintTextureID` int unsigned NOT NULL DEFAULT '0',
`FootprintTextureLength` float NOT NULL DEFAULT '0',
@@ -2794,7 +2847,7 @@ CREATE TABLE `curve_point` (
`PreSLSquishPosX` float NOT NULL DEFAULT '0',
`PreSLSquishPosY` float NOT NULL DEFAULT '0',
`ID` int unsigned NOT NULL DEFAULT '0',
`CurveID` int NOT NULL DEFAULT '0',
`CurveID` int unsigned NOT NULL DEFAULT '0',
`OrderIndex` tinyint unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
@@ -6322,7 +6375,7 @@ CREATE TABLE `mount` (
`Description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`ID` int unsigned NOT NULL DEFAULT '0',
`MountTypeID` smallint unsigned NOT NULL DEFAULT '0',
`Flags` smallint unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`SourceTypeEnum` tinyint NOT NULL DEFAULT '0',
`SourceSpellID` int NOT NULL DEFAULT '0',
`PlayerConditionID` int unsigned NOT NULL DEFAULT '0',
@@ -6344,7 +6397,7 @@ DROP TABLE IF EXISTS `mount_capability`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `mount_capability` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Flags` tinyint unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`ReqRidingSkill` smallint unsigned NOT NULL DEFAULT '0',
`ReqAreaID` smallint unsigned NOT NULL DEFAULT '0',
`ReqSpellAuraID` int unsigned NOT NULL DEFAULT '0',
@@ -6434,7 +6487,7 @@ CREATE TABLE `movie` (
`KeyID` tinyint unsigned NOT NULL DEFAULT '0',
`AudioFileDataID` int unsigned NOT NULL DEFAULT '0',
`SubtitleFileDataID` int unsigned NOT NULL DEFAULT '0',
`SubtitleFileFormat` int NOT NULL DEFAULT '0',
`SubtitleFileFormat` int unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -6590,7 +6643,7 @@ DROP TABLE IF EXISTS `phase`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `phase` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Flags` smallint unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -6658,7 +6711,7 @@ CREATE TABLE `player_condition` (
`MaxAvgItemLevel` int NOT NULL DEFAULT '0',
`MinAvgEquippedItemLevel` smallint unsigned NOT NULL DEFAULT '0',
`MaxAvgEquippedItemLevel` smallint unsigned NOT NULL DEFAULT '0',
`PhaseUseFlags` tinyint unsigned NOT NULL DEFAULT '0',
`PhaseUseFlags` int NOT NULL DEFAULT '0',
`PhaseID` smallint unsigned NOT NULL DEFAULT '0',
`PhaseGroupID` int unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
@@ -7564,6 +7617,48 @@ CREATE TABLE `scene_script_text` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `server_messages`
--
DROP TABLE IF EXISTS `server_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `server_messages` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Text` text COLLATE utf8mb4_unicode_ci,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `server_messages_locale`
--
DROP TABLE IF EXISTS `server_messages_locale`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `server_messages_locale` (
`ID` int unsigned NOT NULL DEFAULT '0',
`locale` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL,
`Text_lang` text COLLATE utf8mb4_unicode_ci,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`locale`,`VerifiedBuild`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci
/*!50500 PARTITION BY LIST COLUMNS(locale)
(PARTITION deDE VALUES IN ('deDE') ENGINE = InnoDB,
PARTITION esES VALUES IN ('esES') ENGINE = InnoDB,
PARTITION esMX VALUES IN ('esMX') ENGINE = InnoDB,
PARTITION frFR VALUES IN ('frFR') ENGINE = InnoDB,
PARTITION itIT VALUES IN ('itIT') ENGINE = InnoDB,
PARTITION koKR VALUES IN ('koKR') ENGINE = InnoDB,
PARTITION ptBR VALUES IN ('ptBR') ENGINE = InnoDB,
PARTITION ruRU VALUES IN ('ruRU') ENGINE = InnoDB,
PARTITION zhCN VALUES IN ('zhCN') ENGINE = InnoDB,
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `skill_line`
--
@@ -8704,6 +8799,7 @@ DROP TABLE IF EXISTS `spell_shapeshift_form`;
CREATE TABLE `spell_shapeshift_form` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`CreatureDisplayID` int unsigned NOT NULL DEFAULT '0',
`CreatureType` tinyint NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`AttackIconFileID` int NOT NULL DEFAULT '0',
@@ -8711,7 +8807,6 @@ CREATE TABLE `spell_shapeshift_form` (
`CombatRoundTime` smallint NOT NULL DEFAULT '0',
`DamageVariance` float NOT NULL DEFAULT '0',
`MountTypeID` smallint unsigned NOT NULL DEFAULT '0',
`CreatureDisplayID1` int unsigned NOT NULL DEFAULT '0',
`CreatureDisplayID2` int unsigned NOT NULL DEFAULT '0',
`CreatureDisplayID3` int unsigned NOT NULL DEFAULT '0',
`CreatureDisplayID4` int unsigned NOT NULL DEFAULT '0',
@@ -9061,7 +9156,7 @@ CREATE TABLE `taxi_nodes` (
`ContinentID` smallint unsigned NOT NULL DEFAULT '0',
`ConditionID` int NOT NULL DEFAULT '0',
`CharacterBitNumber` smallint unsigned NOT NULL DEFAULT '0',
`Flags` smallint unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`UiTextureKitID` int NOT NULL DEFAULT '0',
`MinimapAtlasMemberID` int NOT NULL DEFAULT '0',
`Facing` float NOT NULL DEFAULT '0',
@@ -9133,7 +9228,7 @@ CREATE TABLE `taxi_path_node` (
`PathID` smallint unsigned NOT NULL DEFAULT '0',
`NodeIndex` int NOT NULL DEFAULT '0',
`ContinentID` smallint unsigned NOT NULL DEFAULT '0',
`Flags` tinyint unsigned NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`Delay` int unsigned NOT NULL DEFAULT '0',
`ArrivalEventID` int NOT NULL DEFAULT '0',
`DepartureEventID` int NOT NULL DEFAULT '0',
@@ -9897,7 +9992,7 @@ CREATE TABLE `ui_map` (
`ID` int unsigned NOT NULL DEFAULT '0',
`ParentUiMapID` int NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
`System` tinyint unsigned NOT NULL DEFAULT '0',
`System` tinyint NOT NULL DEFAULT '0',
`Type` tinyint unsigned NOT NULL DEFAULT '0',
`BountySetID` int NOT NULL DEFAULT '0',
`BountyDisplayLocation` int unsigned NOT NULL DEFAULT '0',
@@ -10465,4 +10560,4 @@ CREATE TABLE `world_state_expression` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-07-14 8:24:54
-- Dump completed on 2023-11-15 0:53:58
+14 -39
View File
@@ -1,8 +1,8 @@
-- MySQL dump 10.13 Distrib 8.0.33, for Linux (x86_64)
-- MySQL dump 10.13 Distrib 8.0.34, for Linux (x86_64)
--
-- Host: localhost Database: world
-- ------------------------------------------------------
-- Server version 8.0.33-0ubuntu0.20.04.2
-- Server version 8.0.34-0ubuntu0.20.04.1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
@@ -119,6 +119,7 @@ CREATE TABLE `areatrigger` (
`AreaTriggerId` int unsigned NOT NULL,
`IsServerSide` tinyint unsigned NOT NULL,
`MapId` int unsigned NOT NULL,
`SpawnDifficulties` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`PosX` float NOT NULL,
`PosY` float NOT NULL,
`PosZ` float NOT NULL,
@@ -135,8 +136,10 @@ CREATE TABLE `areatrigger` (
`ShapeData5` float NOT NULL DEFAULT '0',
`ShapeData6` float NOT NULL DEFAULT '0',
`ShapeData7` float NOT NULL DEFAULT '0',
`SpellForVisuals` int DEFAULT NULL,
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`SpawnId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -603,10 +606,10 @@ CREATE TABLE `creature` (
`curhealth` int unsigned NOT NULL DEFAULT '1',
`curmana` int unsigned NOT NULL DEFAULT '0',
`MovementType` tinyint unsigned NOT NULL DEFAULT '0',
`npcflag` bigint unsigned NOT NULL DEFAULT '0',
`unit_flags` int unsigned NOT NULL DEFAULT '0',
`unit_flags2` int unsigned NOT NULL DEFAULT '0',
`unit_flags3` int unsigned NOT NULL DEFAULT '0',
`npcflag` bigint unsigned DEFAULT NULL,
`unit_flags` int unsigned DEFAULT NULL,
`unit_flags2` int unsigned DEFAULT NULL,
`unit_flags3` int unsigned DEFAULT NULL,
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`StringId` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`VerifiedBuild` int NOT NULL DEFAULT '0',
@@ -1348,20 +1351,6 @@ CREATE TABLE `game_event_arena_seasons` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `game_event_battleground_holiday`
--
DROP TABLE IF EXISTS `game_event_battleground_holiday`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `game_event_battleground_holiday` (
`EventEntry` tinyint unsigned NOT NULL COMMENT 'game_event EventEntry identifier',
`BattlegroundID` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`EventEntry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `game_event_condition`
--
@@ -1568,7 +1557,7 @@ CREATE TABLE `game_tele` (
`map` smallint unsigned NOT NULL DEFAULT '0',
`name` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1967 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
) ENGINE=InnoDB AUTO_INCREMENT=2151 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -1627,6 +1616,7 @@ CREATE TABLE `gameobject` (
`animprogress` tinyint unsigned NOT NULL DEFAULT '0',
`state` tinyint unsigned NOT NULL DEFAULT '0',
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`StringId` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`guid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Gameobject System';
@@ -1790,6 +1780,7 @@ CREATE TABLE `gameobject_template` (
`ContentTuningId` int NOT NULL DEFAULT '0',
`AIName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`StringId` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`entry`),
KEY `idx_name` (`name`)
@@ -1999,23 +1990,6 @@ CREATE TABLE `guild_rewards_req_achievements` (
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `instance_encounters`
--
DROP TABLE IF EXISTS `instance_encounters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `instance_encounters` (
`entry` int unsigned NOT NULL COMMENT 'Unique entry from DungeonEncounter.dbc',
`creditType` tinyint unsigned NOT NULL DEFAULT '0',
`creditEntry` int unsigned NOT NULL DEFAULT '0',
`lastEncounterDungeon` smallint unsigned NOT NULL DEFAULT '0' COMMENT 'If not 0, LfgDungeon.dbc entry for the instance it is last encounter in',
`comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`entry`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `instance_spawn_groups`
--
@@ -4053,6 +4027,7 @@ CREATE TABLE `smart_scripts` (
`source_type` tinyint unsigned NOT NULL DEFAULT '0',
`id` smallint unsigned NOT NULL DEFAULT '0',
`link` smallint unsigned NOT NULL DEFAULT '0',
`Difficulties` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`event_type` tinyint unsigned NOT NULL DEFAULT '0',
`event_phase_mask` smallint unsigned NOT NULL DEFAULT '0',
`event_chance` tinyint unsigned NOT NULL DEFAULT '100',
@@ -4895,4 +4870,4 @@ CREATE TABLE `world_state` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-07-14 8:24:49
-- Dump completed on 2023-11-15 0:53:53