mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-13 03:32:28 -04:00
TDB 1127.26011 - 2026/01/14
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
-- MySQL dump 10.13 Distrib 8.0.43, for Linux (x86_64)
|
||||
-- MySQL dump 10.13 Distrib 8.0.44, for Linux (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: world
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.0.43-0ubuntu0.22.04.2
|
||||
-- Server version 8.0.44-0ubuntu0.22.04.2
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
@@ -644,9 +644,9 @@ CREATE TABLE `creature_addon` (
|
||||
`SheathState` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`PvPFlags` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`emote` int unsigned NOT NULL DEFAULT '0',
|
||||
`aiAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`movementAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`meleeAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`aiAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`movementAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`meleeAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`auras` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`guid`)
|
||||
@@ -1023,9 +1023,9 @@ CREATE TABLE `creature_template_addon` (
|
||||
`SheathState` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`PvPFlags` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`emote` int unsigned NOT NULL DEFAULT '0',
|
||||
`aiAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`movementAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`meleeAnimKit` smallint NOT NULL DEFAULT '0',
|
||||
`aiAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`movementAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`meleeAnimKit` smallint unsigned NOT NULL DEFAULT '0',
|
||||
`visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`auras` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
PRIMARY KEY (`entry`)
|
||||
@@ -1854,6 +1854,7 @@ CREATE TABLE `gameobject_template` (
|
||||
`Data33` int NOT NULL DEFAULT '0',
|
||||
`Data34` int NOT NULL DEFAULT '0',
|
||||
`ContentTuningId` int NOT NULL DEFAULT '0',
|
||||
`RequiredLevel` 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,
|
||||
@@ -2181,7 +2182,9 @@ CREATE TABLE `jump_charge_params` (
|
||||
`id` int NOT NULL,
|
||||
`speed` float NOT NULL DEFAULT '42',
|
||||
`treatSpeedAsMoveTimeSeconds` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`jumpGravity` float NOT NULL DEFAULT '19.2911',
|
||||
`unlimitedSpeed` tinyint(1) NOT NULL DEFAULT '0',
|
||||
`minHeight` float DEFAULT NULL,
|
||||
`maxHeight` float DEFAULT NULL,
|
||||
`spellVisualId` int DEFAULT NULL,
|
||||
`progressCurveId` int DEFAULT NULL,
|
||||
`parabolicCurveId` int DEFAULT NULL,
|
||||
@@ -3168,9 +3171,12 @@ CREATE TABLE `quest_objectives` (
|
||||
`StorageIndex` tinyint NOT NULL DEFAULT '0',
|
||||
`ObjectID` int NOT NULL DEFAULT '0',
|
||||
`Amount` int NOT NULL DEFAULT '0',
|
||||
`SecondaryAmount` int NOT NULL DEFAULT '0',
|
||||
`Flags` int unsigned NOT NULL DEFAULT '0',
|
||||
`Flags2` int unsigned NOT NULL DEFAULT '0',
|
||||
`ProgressBarWeight` float NOT NULL DEFAULT '0',
|
||||
`ParentObjectiveID` int NOT NULL DEFAULT '0',
|
||||
`Visible` tinyint unsigned NOT NULL DEFAULT '1',
|
||||
`Description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`ID`)
|
||||
@@ -3443,6 +3449,38 @@ CREATE TABLE `quest_reward_display_spell` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_reward_house_decor`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_reward_house_decor`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_reward_house_decor` (
|
||||
`QuestID` int unsigned NOT NULL,
|
||||
`OrderIndex` int NOT NULL,
|
||||
`HouseDecorID` int NOT NULL,
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestID`,`OrderIndex`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_reward_house_room`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `quest_reward_house_room`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `quest_reward_house_room` (
|
||||
`QuestID` int unsigned NOT NULL,
|
||||
`OrderIndex` int NOT NULL,
|
||||
`HouseRoomID` int NOT NULL,
|
||||
`VerifiedBuild` int NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`QuestID`,`OrderIndex`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `quest_template`
|
||||
--
|
||||
@@ -4905,26 +4943,6 @@ SET @saved_cs_client = @@character_set_client;
|
||||
1 AS `comment`*/;
|
||||
SET character_set_client = @saved_cs_client;
|
||||
|
||||
--
|
||||
-- Table structure for table `warden_checks`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `warden_checks`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `warden_checks` (
|
||||
`id` smallint unsigned NOT NULL AUTO_INCREMENT,
|
||||
`type` tinyint unsigned DEFAULT NULL,
|
||||
`str` varchar(170) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`address` int unsigned DEFAULT NULL,
|
||||
`length` tinyint unsigned DEFAULT NULL,
|
||||
`comment` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`data` binary(24) DEFAULT NULL,
|
||||
`result` varbinary(24) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=791 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `waypoint_path`
|
||||
--
|
||||
@@ -5066,4 +5084,4 @@ CREATE TABLE `world_state` (
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2025-10-29 6:57:05
|
||||
-- Dump completed on 2026-01-14 23:40:37
|
||||
|
||||
Reference in New Issue
Block a user