@@ -385,7 +385,7 @@ CREATE TABLE `area_trigger` (
385
385
` BoxYaw` float NOT NULL DEFAULT ' 0' ,
386
386
` ShapeType` tinyint NOT NULL DEFAULT ' 0' ,
387
387
` ShapeID` smallint NOT NULL DEFAULT ' 0' ,
388
- ` AreaTriggerActionSetID` smallint NOT NULL DEFAULT ' 0' ,
388
+ ` AreaTriggerActionSetID` int NOT NULL DEFAULT ' 0' ,
389
389
` Flags` tinyint NOT NULL DEFAULT ' 0' ,
390
390
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
391
391
PRIMARY KEY (` ID` ,` VerifiedBuild` )
@@ -2542,7 +2542,7 @@ CREATE TABLE `currency_container` (
2542
2542
` MinAmount` int NOT NULL DEFAULT ' 0' ,
2543
2543
` MaxAmount` int NOT NULL DEFAULT ' 0' ,
2544
2544
` ContainerIconID` int NOT NULL DEFAULT ' 0' ,
2545
- ` ContainerQuality` int NOT NULL DEFAULT ' 0' ,
2545
+ ` ContainerQuality` tinyint NOT NULL DEFAULT ' 0' ,
2546
2546
` OnLootSpellVisualKitID` int NOT NULL DEFAULT ' 0' ,
2547
2547
` CurrencyTypesID` int unsigned NOT NULL DEFAULT ' 0' ,
2548
2548
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
@@ -2729,9 +2729,9 @@ CREATE TABLE `difficulty` (
2729
2729
` Flags` smallint unsigned NOT NULL DEFAULT ' 0' ,
2730
2730
` ItemContext` tinyint unsigned NOT NULL DEFAULT ' 0' ,
2731
2731
` ToggleDifficultyID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
2732
- ` GroupSizeHealthCurveID` smallint unsigned NOT NULL DEFAULT ' 0' ,
2733
- ` GroupSizeDmgCurveID` smallint unsigned NOT NULL DEFAULT ' 0' ,
2734
- ` GroupSizeSpellPointsCurveID` smallint unsigned NOT NULL DEFAULT ' 0' ,
2732
+ ` GroupSizeHealthCurveID` int unsigned NOT NULL DEFAULT ' 0' ,
2733
+ ` GroupSizeDmgCurveID` int unsigned NOT NULL DEFAULT ' 0' ,
2734
+ ` GroupSizeSpellPointsCurveID` int unsigned NOT NULL DEFAULT ' 0' ,
2735
2735
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
2736
2736
PRIMARY KEY (` ID` ,` VerifiedBuild` )
2737
2737
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
@@ -3351,7 +3351,7 @@ CREATE TABLE `garr_building` (
3351
3351
` AllianceName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3352
3352
` Description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3353
3353
` Tooltip` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3354
- ` GarrTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3354
+ ` GarrTypeID` tinyint NOT NULL DEFAULT ' 0' ,
3355
3355
` BuildingType` tinyint NOT NULL DEFAULT ' 0' ,
3356
3356
` HordeGameObjectID` int NOT NULL DEFAULT ' 0' ,
3357
3357
` AllianceGameObjectID` int NOT NULL DEFAULT ' 0' ,
@@ -3487,7 +3487,7 @@ CREATE TABLE `garr_follower` (
3487
3487
` HordeSourceText` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3488
3488
` AllianceSourceText` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3489
3489
` TitleName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3490
- ` GarrTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3490
+ ` GarrTypeID` tinyint NOT NULL DEFAULT ' 0' ,
3491
3491
` GarrFollowerTypeID` tinyint NOT NULL DEFAULT ' 0' ,
3492
3492
` HordeCreatureID` int NOT NULL DEFAULT ' 0' ,
3493
3493
` AllianceCreatureID` int NOT NULL DEFAULT ' 0' ,
@@ -3585,7 +3585,7 @@ CREATE TABLE `garr_mission` (
3585
3585
` MapPosY` float NOT NULL DEFAULT ' 0' ,
3586
3586
` WorldPosX` float NOT NULL DEFAULT ' 0' ,
3587
3587
` WorldPosY` float NOT NULL DEFAULT ' 0' ,
3588
- ` GarrTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3588
+ ` GarrTypeID` tinyint NOT NULL DEFAULT ' 0' ,
3589
3589
` GarrMissionTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3590
3590
` GarrFollowerTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3591
3591
` MaxFollowers` tinyint unsigned NOT NULL DEFAULT ' 0' ,
@@ -3752,7 +3752,7 @@ DROP TABLE IF EXISTS `garr_talent_tree`;
3752
3752
CREATE TABLE `garr_talent_tree ` (
3753
3753
` ID` int unsigned NOT NULL DEFAULT ' 0' ,
3754
3754
` Name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
3755
- ` GarrTypeID` tinyint unsigned NOT NULL DEFAULT ' 0' ,
3755
+ ` GarrTypeID` tinyint NOT NULL DEFAULT ' 0' ,
3756
3756
` ClassID` int NOT NULL DEFAULT ' 0' ,
3757
3757
` MaxTiers` tinyint NOT NULL DEFAULT ' 0' ,
3758
3758
` UiOrder` tinyint NOT NULL DEFAULT ' 0' ,
@@ -5568,11 +5568,12 @@ DROP TABLE IF EXISTS `languages`;
5568
5568
/* !40101 SET @saved_cs_client = @@character_set_client */ ;
5569
5569
/* !50503 SET character_set_client = utf8mb4 */ ;
5570
5570
CREATE TABLE `languages ` (
5571
- ` ID` int unsigned NOT NULL DEFAULT ' 0' ,
5572
5571
` Name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
5572
+ ` ID` int unsigned NOT NULL DEFAULT ' 0' ,
5573
5573
` Flags` int NOT NULL DEFAULT ' 0' ,
5574
5574
` UiTextureKitID` int NOT NULL DEFAULT ' 0' ,
5575
5575
` UiTextureKitElementCount` int NOT NULL DEFAULT ' 0' ,
5576
+ ` LearningCurveID` int NOT NULL DEFAULT ' 0' ,
5576
5577
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
5577
5578
PRIMARY KEY (` ID` ,` VerifiedBuild` )
5578
5579
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
@@ -6895,7 +6896,7 @@ CREATE TABLE `quest_info` (
6895
6896
` InfoName` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
6896
6897
` Type` tinyint NOT NULL DEFAULT ' 0' ,
6897
6898
` Modifiers` int NOT NULL DEFAULT ' 0' ,
6898
- ` Profession` int NOT NULL DEFAULT ' 0' ,
6899
+ ` Profession` smallint unsigned NOT NULL DEFAULT ' 0' ,
6899
6900
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
6900
6901
PRIMARY KEY (` ID` ,` VerifiedBuild` )
6901
6902
) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
@@ -8063,6 +8064,24 @@ CREATE TABLE `spell_item_enchantment_locale` (
8063
8064
PARTITION zhTW VALUES IN ('zhTW') ENGINE = InnoDB) */ ;
8064
8065
/* !40101 SET character_set_client = @saved_cs_client */ ;
8065
8066
8067
+ --
8068
+ -- Table structure for table `spell_keybound_override`
8069
+ --
8070
+
8071
+ DROP TABLE IF EXISTS ` spell_keybound_override` ;
8072
+ /* !40101 SET @saved_cs_client = @@character_set_client */ ;
8073
+ /* !50503 SET character_set_client = utf8mb4 */ ;
8074
+ CREATE TABLE `spell_keybound_override ` (
8075
+ ` ID` int unsigned NOT NULL DEFAULT ' 0' ,
8076
+ ` Function` text COLLATE utf8mb4_unicode_ci,
8077
+ ` Type` tinyint NOT NULL DEFAULT ' 0' ,
8078
+ ` Data` int NOT NULL DEFAULT ' 0' ,
8079
+ ` Flags` int NOT NULL DEFAULT ' 0' ,
8080
+ ` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
8081
+ PRIMARY KEY (` ID` ,` VerifiedBuild` )
8082
+ ) ENGINE= InnoDB DEFAULT CHARSET= utf8mb4 COLLATE= utf8mb4_unicode_ci;
8083
+ /* !40101 SET character_set_client = @saved_cs_client */ ;
8084
+
8066
8085
--
8067
8086
-- Table structure for table `spell_label`
8068
8087
--
@@ -9342,7 +9361,7 @@ DROP TABLE IF EXISTS `trait_node_x_trait_cost`;
9342
9361
/* !50503 SET character_set_client = utf8mb4 */ ;
9343
9362
CREATE TABLE `trait_node_x_trait_cost ` (
9344
9363
` ID` int unsigned NOT NULL DEFAULT ' 0' ,
9345
- ` TraitNodeID` int unsigned NOT NULL DEFAULT ' 0' ,
9364
+ ` TraitNodeID` int NOT NULL DEFAULT ' 0' ,
9346
9365
` TraitCostID` int NOT NULL DEFAULT ' 0' ,
9347
9366
` VerifiedBuild` int NOT NULL DEFAULT ' 0' ,
9348
9367
PRIMARY KEY (` ID` ,` VerifiedBuild` )
@@ -10219,4 +10238,4 @@ CREATE TABLE `world_state_expression` (
10219
10238
/* !40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */ ;
10220
10239
/* !40111 SET SQL_NOTES=@OLD_SQL_NOTES */ ;
10221
10240
10222
- -- Dump completed on 2023-02-03 1:14:00
10241
+ -- Dump completed on 2023-04-02 1:02:34
0 commit comments