aboutsummaryrefslogtreecommitdiff
path: root/sql/base/dev
diff options
context:
space:
mode:
Diffstat (limited to 'sql/base/dev')
-rw-r--r--sql/base/dev/hotfixes_database.sql59
-rw-r--r--sql/base/dev/world_database.sql30
2 files changed, 78 insertions, 11 deletions
diff --git a/sql/base/dev/hotfixes_database.sql b/sql/base/dev/hotfixes_database.sql
index 2797a0d7d5c..9217f0ceb65 100644
--- a/sql/base/dev/hotfixes_database.sql
+++ b/sql/base/dev/hotfixes_database.sql
@@ -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: hotfixes
-- ------------------------------------------------------
--- 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 */;
@@ -3696,6 +3696,59 @@ CREATE TABLE `garr_site_level_plot_inst` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
+-- Table structure for table `garr_talent_tree`
+--
+
+DROP TABLE IF EXISTS `garr_talent_tree`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `garr_talent_tree` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `Name` text COLLATE utf8mb4_unicode_ci,
+ `GarrTypeID` tinyint unsigned NOT NULL DEFAULT '0',
+ `ClassID` int NOT NULL DEFAULT '0',
+ `MaxTiers` tinyint NOT NULL DEFAULT '0',
+ `UiOrder` tinyint NOT NULL DEFAULT '0',
+ `Flags` int NOT NULL DEFAULT '0',
+ `UiTextureKitID` smallint unsigned NOT NULL DEFAULT '0',
+ `GarrTalentTreeType` int NOT NULL DEFAULT '0',
+ `PlayerConditionID` int NOT NULL DEFAULT '0',
+ `FeatureTypeIndex` tinyint NOT NULL DEFAULT '0',
+ `FeatureSubtypeIndex` tinyint NOT NULL DEFAULT '0',
+ `CurrencyID` int 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 `garr_talent_tree_locale`
+--
+
+DROP TABLE IF EXISTS `garr_talent_tree_locale`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `garr_talent_tree_locale` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL,
+ `Name_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 `gem_properties`
--
@@ -9529,4 +9582,4 @@ CREATE TABLE `world_state_expression` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2022-08-21 0:02:11
+-- Dump completed on 2022-11-20 11:05:28
diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql
index 4b76393e0f8..52aafe97366 100644
--- a/sql/base/dev/world_database.sql
+++ b/sql/base/dev/world_database.sql
@@ -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: world
-- ------------------------------------------------------
--- 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 */;
@@ -1518,7 +1518,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=1824 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
+) ENGINE=InnoDB AUTO_INCREMENT=1951 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -1867,11 +1867,9 @@ DROP TABLE IF EXISTS `gossip_menu_option`;
CREATE TABLE `gossip_menu_option` (
`MenuID` int unsigned NOT NULL DEFAULT '0',
`OptionID` int unsigned NOT NULL DEFAULT '0',
- `OptionIcon` tinyint 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',
- `OptionType` int unsigned NOT NULL DEFAULT '0',
- `OptionNpcFlag` bigint unsigned NOT NULL DEFAULT '0',
`Language` int unsigned NOT NULL DEFAULT '0',
`ActionMenuID` int unsigned NOT NULL DEFAULT '0',
`ActionPoiID` int unsigned NOT NULL DEFAULT '0',
@@ -1885,6 +1883,22 @@ CREATE TABLE `gossip_menu_option` (
/*!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,
+ `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_locale`
--
@@ -2860,7 +2874,7 @@ CREATE TABLE `points_of_interest` (
`Flags` int unsigned NOT NULL DEFAULT '0',
`Importance` int unsigned NOT NULL DEFAULT '0',
`Name` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
- `Unknown905` int NOT NULL DEFAULT '0',
+ `WMOGroupID` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -4782,4 +4796,4 @@ CREATE TABLE `world_state` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2022-08-21 0:02:08
+-- Dump completed on 2022-11-20 11:05:24