|
1 | | --- MySQL dump 10.13 Distrib 8.0.43, for Linux (x86_64) |
| 1 | +-- MySQL dump 10.13 Distrib 8.0.44, for Linux (x86_64) |
2 | 2 | -- |
3 | 3 | -- Host: localhost Database: world |
4 | 4 | -- ------------------------------------------------------ |
5 | | --- Server version 8.0.43-0ubuntu0.22.04.2 |
| 5 | +-- Server version 8.0.44-0ubuntu0.22.04.2 |
6 | 6 |
|
7 | 7 | /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; |
8 | 8 | /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; |
@@ -644,9 +644,9 @@ CREATE TABLE `creature_addon` ( |
644 | 644 | `SheathState` tinyint unsigned NOT NULL DEFAULT '1', |
645 | 645 | `PvPFlags` tinyint unsigned NOT NULL DEFAULT '0', |
646 | 646 | `emote` int unsigned NOT NULL DEFAULT '0', |
647 | | - `aiAnimKit` smallint NOT NULL DEFAULT '0', |
648 | | - `movementAnimKit` smallint NOT NULL DEFAULT '0', |
649 | | - `meleeAnimKit` smallint NOT NULL DEFAULT '0', |
| 647 | + `aiAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
| 648 | + `movementAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
| 649 | + `meleeAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
650 | 650 | `visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0', |
651 | 651 | `auras` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, |
652 | 652 | PRIMARY KEY (`guid`) |
@@ -1023,9 +1023,9 @@ CREATE TABLE `creature_template_addon` ( |
1023 | 1023 | `SheathState` tinyint unsigned NOT NULL DEFAULT '1', |
1024 | 1024 | `PvPFlags` tinyint unsigned NOT NULL DEFAULT '0', |
1025 | 1025 | `emote` int unsigned NOT NULL DEFAULT '0', |
1026 | | - `aiAnimKit` smallint NOT NULL DEFAULT '0', |
1027 | | - `movementAnimKit` smallint NOT NULL DEFAULT '0', |
1028 | | - `meleeAnimKit` smallint NOT NULL DEFAULT '0', |
| 1026 | + `aiAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
| 1027 | + `movementAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
| 1028 | + `meleeAnimKit` smallint unsigned NOT NULL DEFAULT '0', |
1029 | 1029 | `visibilityDistanceType` tinyint unsigned NOT NULL DEFAULT '0', |
1030 | 1030 | `auras` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, |
1031 | 1031 | PRIMARY KEY (`entry`) |
@@ -1854,6 +1854,7 @@ CREATE TABLE `gameobject_template` ( |
1854 | 1854 | `Data33` int NOT NULL DEFAULT '0', |
1855 | 1855 | `Data34` int NOT NULL DEFAULT '0', |
1856 | 1856 | `ContentTuningId` int NOT NULL DEFAULT '0', |
| 1857 | + `RequiredLevel` int NOT NULL DEFAULT '0', |
1857 | 1858 | `AIName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
1858 | 1859 | `ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', |
1859 | 1860 | `StringId` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
@@ -2181,7 +2182,9 @@ CREATE TABLE `jump_charge_params` ( |
2181 | 2182 | `id` int NOT NULL, |
2182 | 2183 | `speed` float NOT NULL DEFAULT '42', |
2183 | 2184 | `treatSpeedAsMoveTimeSeconds` tinyint(1) NOT NULL DEFAULT '0', |
2184 | | - `jumpGravity` float NOT NULL DEFAULT '19.2911', |
| 2185 | + `unlimitedSpeed` tinyint(1) NOT NULL DEFAULT '0', |
| 2186 | + `minHeight` float DEFAULT NULL, |
| 2187 | + `maxHeight` float DEFAULT NULL, |
2185 | 2188 | `spellVisualId` int DEFAULT NULL, |
2186 | 2189 | `progressCurveId` int DEFAULT NULL, |
2187 | 2190 | `parabolicCurveId` int DEFAULT NULL, |
@@ -3168,9 +3171,12 @@ CREATE TABLE `quest_objectives` ( |
3168 | 3171 | `StorageIndex` tinyint NOT NULL DEFAULT '0', |
3169 | 3172 | `ObjectID` int NOT NULL DEFAULT '0', |
3170 | 3173 | `Amount` int NOT NULL DEFAULT '0', |
| 3174 | + `SecondaryAmount` int NOT NULL DEFAULT '0', |
3171 | 3175 | `Flags` int unsigned NOT NULL DEFAULT '0', |
3172 | 3176 | `Flags2` int unsigned NOT NULL DEFAULT '0', |
3173 | 3177 | `ProgressBarWeight` float NOT NULL DEFAULT '0', |
| 3178 | + `ParentObjectiveID` int NOT NULL DEFAULT '0', |
| 3179 | + `Visible` tinyint unsigned NOT NULL DEFAULT '1', |
3174 | 3180 | `Description` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci, |
3175 | 3181 | `VerifiedBuild` int NOT NULL DEFAULT '0', |
3176 | 3182 | PRIMARY KEY (`ID`) |
@@ -3443,6 +3449,38 @@ CREATE TABLE `quest_reward_display_spell` ( |
3443 | 3449 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
3444 | 3450 | /*!40101 SET character_set_client = @saved_cs_client */; |
3445 | 3451 |
|
| 3452 | +-- |
| 3453 | +-- Table structure for table `quest_reward_house_decor` |
| 3454 | +-- |
| 3455 | + |
| 3456 | +DROP TABLE IF EXISTS `quest_reward_house_decor`; |
| 3457 | +/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 3458 | +/*!50503 SET character_set_client = utf8mb4 */; |
| 3459 | +CREATE TABLE `quest_reward_house_decor` ( |
| 3460 | + `QuestID` int unsigned NOT NULL, |
| 3461 | + `OrderIndex` int NOT NULL, |
| 3462 | + `HouseDecorID` int NOT NULL, |
| 3463 | + `VerifiedBuild` int NOT NULL DEFAULT '0', |
| 3464 | + PRIMARY KEY (`QuestID`,`OrderIndex`) |
| 3465 | +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 3466 | +/*!40101 SET character_set_client = @saved_cs_client */; |
| 3467 | + |
| 3468 | +-- |
| 3469 | +-- Table structure for table `quest_reward_house_room` |
| 3470 | +-- |
| 3471 | + |
| 3472 | +DROP TABLE IF EXISTS `quest_reward_house_room`; |
| 3473 | +/*!40101 SET @saved_cs_client = @@character_set_client */; |
| 3474 | +/*!50503 SET character_set_client = utf8mb4 */; |
| 3475 | +CREATE TABLE `quest_reward_house_room` ( |
| 3476 | + `QuestID` int unsigned NOT NULL, |
| 3477 | + `OrderIndex` int NOT NULL, |
| 3478 | + `HouseRoomID` int NOT NULL, |
| 3479 | + `VerifiedBuild` int NOT NULL DEFAULT '0', |
| 3480 | + PRIMARY KEY (`QuestID`,`OrderIndex`) |
| 3481 | +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 3482 | +/*!40101 SET character_set_client = @saved_cs_client */; |
| 3483 | + |
3446 | 3484 | -- |
3447 | 3485 | -- Table structure for table `quest_template` |
3448 | 3486 | -- |
@@ -4905,26 +4943,6 @@ SET @saved_cs_client = @@character_set_client; |
4905 | 4943 | 1 AS `comment`*/; |
4906 | 4944 | SET character_set_client = @saved_cs_client; |
4907 | 4945 |
|
4908 | | --- |
4909 | | --- Table structure for table `warden_checks` |
4910 | | --- |
4911 | | - |
4912 | | -DROP TABLE IF EXISTS `warden_checks`; |
4913 | | -/*!40101 SET @saved_cs_client = @@character_set_client */; |
4914 | | -/*!50503 SET character_set_client = utf8mb4 */; |
4915 | | -CREATE TABLE `warden_checks` ( |
4916 | | - `id` smallint unsigned NOT NULL AUTO_INCREMENT, |
4917 | | - `type` tinyint unsigned DEFAULT NULL, |
4918 | | - `str` varchar(170) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
4919 | | - `address` int unsigned DEFAULT NULL, |
4920 | | - `length` tinyint unsigned DEFAULT NULL, |
4921 | | - `comment` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
4922 | | - `data` binary(24) DEFAULT NULL, |
4923 | | - `result` varbinary(24) DEFAULT NULL, |
4924 | | - PRIMARY KEY (`id`) |
4925 | | -) ENGINE=InnoDB AUTO_INCREMENT=791 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
4926 | | -/*!40101 SET character_set_client = @saved_cs_client */; |
4927 | | - |
4928 | 4946 | -- |
4929 | 4947 | -- Table structure for table `waypoint_path` |
4930 | 4948 | -- |
@@ -5066,4 +5084,4 @@ CREATE TABLE `world_state` ( |
5066 | 5084 | /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; |
5067 | 5085 | /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; |
5068 | 5086 |
|
5069 | | --- Dump completed on 2025-10-29 6:57:05 |
| 5087 | +-- Dump completed on 2026-01-14 23:40:37 |
0 commit comments