aboutsummaryrefslogtreecommitdiff
path: root/sql/base/dev
diff options
context:
space:
mode:
authorTDB Release <tdb-release@build.bot>2025-07-21 22:56:17 +0000
committerTDB Release <tdb-release@build.bot>2025-07-21 22:56:17 +0000
commitcba7c3ab5e41f17a1e480f8591022537abadcb66 (patch)
treec1f389602783f4ee4232ea829759c46a94d60567 /sql/base/dev
parent03714bb68416d97c94e155def5c67f3e2eb30542 (diff)
TDB 1117.25071 - 2025/07/21TDB1117.25071
Diffstat (limited to 'sql/base/dev')
-rw-r--r--sql/base/dev/hotfixes_database.sql88
-rw-r--r--sql/base/dev/world_database.sql16
2 files changed, 87 insertions, 17 deletions
diff --git a/sql/base/dev/hotfixes_database.sql b/sql/base/dev/hotfixes_database.sql
index 241a04977e9..2a4487226d0 100644
--- a/sql/base/dev/hotfixes_database.sql
+++ b/sql/base/dev/hotfixes_database.sql
@@ -1290,7 +1290,7 @@ CREATE TABLE `battlemaster_list` (
`GameType` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`ShortDescription` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`LongDescription` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
- `InstanceType` tinyint NOT NULL DEFAULT '0',
+ `PvpType` int NOT NULL DEFAULT '0',
`MinLevel` tinyint NOT NULL DEFAULT '0',
`MaxLevel` tinyint NOT NULL DEFAULT '0',
`RatedPlayers` tinyint NOT NULL DEFAULT '0',
@@ -2310,6 +2310,8 @@ CREATE TABLE `content_tuning` (
`ExpansionID` int NOT NULL DEFAULT '0',
`HealthItemLevelCurveID` int NOT NULL DEFAULT '0',
`DamageItemLevelCurveID` int NOT NULL DEFAULT '0',
+ `HealthPrimaryStatCurveID` int NOT NULL DEFAULT '0',
+ `DamagePrimaryStatCurveID` int NOT NULL DEFAULT '0',
`MinLevel` int NOT NULL DEFAULT '0',
`MaxLevel` int NOT NULL DEFAULT '0',
`MinLevelType` int NOT NULL DEFAULT '0',
@@ -6896,8 +6898,8 @@ DROP TABLE IF EXISTS `perks_activity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `perks_activity` (
- `ActivityName` text COLLATE utf8mb4_unicode_ci,
- `Description` text COLLATE utf8mb4_unicode_ci,
+ `ActivityName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
+ `Description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`ID` int unsigned NOT NULL DEFAULT '0',
`CriteriaTreeID` int NOT NULL DEFAULT '0',
`ThresholdContributionAmount` int NOT NULL DEFAULT '0',
@@ -6917,9 +6919,9 @@ DROP TABLE IF EXISTS `perks_activity_locale`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `perks_activity_locale` (
`ID` int unsigned NOT NULL DEFAULT '0',
- `locale` varchar(4) COLLATE utf8mb4_unicode_ci NOT NULL,
- `ActivityName_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,
+ `ActivityName_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
@@ -6995,7 +6997,7 @@ CREATE TABLE `player_condition` (
`CurrentCompletedQuestLogic` int unsigned NOT NULL DEFAULT '0',
`SpellLogic` int unsigned NOT NULL DEFAULT '0',
`ItemLogic` int unsigned NOT NULL DEFAULT '0',
- `ItemFlags` tinyint unsigned NOT NULL DEFAULT '0',
+ `ItemFlags` int NOT NULL DEFAULT '0',
`AuraSpellLogic` int unsigned NOT NULL DEFAULT '0',
`WorldStateExpressionID` smallint unsigned NOT NULL DEFAULT '0',
`WeatherID` int NOT NULL DEFAULT '0',
@@ -7170,6 +7172,70 @@ CREATE TABLE `player_condition_locale` (
/*!40101 SET character_set_client = @saved_cs_client */;
--
+-- Table structure for table `player_data_element_account`
+--
+
+DROP TABLE IF EXISTS `player_data_element_account`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `player_data_element_account` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `StorageIndex` int NOT NULL DEFAULT '0',
+ `Type` 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 `player_data_element_character`
+--
+
+DROP TABLE IF EXISTS `player_data_element_character`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `player_data_element_character` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `StorageIndex` int NOT NULL DEFAULT '0',
+ `Type` 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 `player_data_flag_account`
+--
+
+DROP TABLE IF EXISTS `player_data_flag_account`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `player_data_flag_account` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `StorageIndex` int NOT NULL DEFAULT '0',
+ `Unknown1107` 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 `player_data_flag_character`
+--
+
+DROP TABLE IF EXISTS `player_data_flag_character`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!50503 SET character_set_client = utf8mb4 */;
+CREATE TABLE `player_data_flag_character` (
+ `ID` int unsigned NOT NULL DEFAULT '0',
+ `StorageIndex` int NOT NULL DEFAULT '0',
+ `Unknown1107` 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 `power_display`
--
@@ -7669,7 +7735,7 @@ DROP TABLE IF EXISTS `quest_v2`;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `quest_v2` (
`ID` int unsigned NOT NULL DEFAULT '0',
- `UniqueBitFlag` smallint unsigned NOT NULL DEFAULT '0',
+ `UniqueBitFlag` int NOT NULL DEFAULT '0',
`UiQuestDetailsTheme` int NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ID`,`VerifiedBuild`)
@@ -9479,7 +9545,7 @@ CREATE TABLE `talent` (
`ID` int unsigned NOT NULL DEFAULT '0',
`Description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`TierID` tinyint unsigned NOT NULL DEFAULT '0',
- `Flags` tinyint unsigned NOT NULL DEFAULT '0',
+ `Flags` int NOT NULL DEFAULT '0',
`ColumnIndex` tinyint unsigned NOT NULL DEFAULT '0',
`TabID` smallint unsigned NOT NULL DEFAULT '0',
`ClassID` tinyint NOT NULL DEFAULT '0',
@@ -11016,7 +11082,7 @@ CREATE TABLE `wmo_area_table` (
`IntroSound` smallint unsigned NOT NULL DEFAULT '0',
`UwIntroSound` smallint unsigned NOT NULL DEFAULT '0',
`AreaTableID` smallint unsigned NOT NULL DEFAULT '0',
- `Flags` tinyint 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;
@@ -11126,4 +11192,4 @@ CREATE TABLE `world_state_expression` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2025-05-31 19:46:02
+-- Dump completed on 2025-07-21 22:51:12
diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql
index 130a92a5b20..77a3413e32d 100644
--- a/sql/base/dev/world_database.sql
+++ b/sql/base/dev/world_database.sql
@@ -1630,7 +1630,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=2291 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
+) ENGINE=InnoDB AUTO_INCREMENT=2305 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Tele Command';
/*!40101 SET character_set_client = @saved_cs_client */;
--
@@ -2653,11 +2653,16 @@ CREATE TABLE `playerchoice` (
`UiTextureKitId` int NOT NULL DEFAULT '0',
`SoundKitId` int unsigned NOT NULL DEFAULT '0',
`CloseSoundKitId` int unsigned NOT NULL DEFAULT '0',
- `Duration` bigint NOT NULL DEFAULT '0',
+ `Duration` bigint DEFAULT '0',
`PendingChoiceText` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`Question` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
- `HideWarboardHeader` tinyint(1) NOT NULL DEFAULT '0',
+ `HideWarboardHeader` tinyint unsigned NOT NULL DEFAULT '0',
`KeepOpenAfterChoice` tinyint unsigned NOT NULL DEFAULT '0',
+ `ShowChoicesAsList` tinyint unsigned NOT NULL DEFAULT '0',
+ `ForceDontShowChoicesAsList` tinyint unsigned NOT NULL DEFAULT '0',
+ `MaxResponses` int unsigned DEFAULT NULL,
+ `ScriptName` varchar(64) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
+ `InfiniteRange` tinyint unsigned NOT NULL DEFAULT '0',
`VerifiedBuild` int NOT NULL DEFAULT '0',
PRIMARY KEY (`ChoiceId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
@@ -2689,7 +2694,6 @@ DROP TABLE IF EXISTS `playerchoice_response`;
CREATE TABLE `playerchoice_response` (
`ChoiceId` int NOT NULL,
`ResponseId` int NOT NULL,
- `ResponseIdentifier` smallint unsigned NOT NULL,
`Index` int unsigned NOT NULL,
`ChoiceArtFileId` int NOT NULL DEFAULT '0',
`Flags` int NOT NULL DEFAULT '0',
@@ -4194,7 +4198,7 @@ CREATE TABLE `spawn_tracking` (
`SpawnTrackingId` int unsigned NOT NULL,
`SpawnType` tinyint unsigned NOT NULL,
`SpawnId` bigint unsigned NOT NULL,
- `QuestObjectiveId` int unsigned NOT NULL,
+ `QuestObjectiveIds` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`SpawnTrackingId`,`SpawnType`,`SpawnId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
@@ -5057,4 +5061,4 @@ CREATE TABLE `world_state` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
--- Dump completed on 2025-05-31 19:45:59
+-- Dump completed on 2025-07-21 22:51:09