diff options
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/auth/master/2024_08_15_00_auth.sql | 8 | ||||
| -rw-r--r-- | sql/updates/hotfixes/master/2024_08_15_00_hotfixes.sql | 21 |
2 files changed, 29 insertions, 0 deletions
diff --git a/sql/updates/auth/master/2024_08_15_00_auth.sql b/sql/updates/auth/master/2024_08_15_00_auth.sql new file mode 100644 index 00000000000..3a50b6b5935 --- /dev/null +++ b/sql/updates/auth/master/2024_08_15_00_auth.sql @@ -0,0 +1,8 @@ +DELETE FROM `build_info` WHERE `build` IN (55959,56110); +INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES +(55959,11,0,2,NULL,NULL,'ED57E0538FD1CE99B171BE34823148A9',NULL,NULL,NULL), +(56110,11,0,2,NULL,NULL,'800BCA228E2FAE37ED160F3C09E21F3A',NULL,NULL,NULL); + +UPDATE `realmlist` SET `gamebuild`=56110 WHERE `gamebuild`=56008; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '56110'; diff --git a/sql/updates/hotfixes/master/2024_08_15_00_hotfixes.sql b/sql/updates/hotfixes/master/2024_08_15_00_hotfixes.sql new file mode 100644 index 00000000000..a07c2b5224b --- /dev/null +++ b/sql/updates/hotfixes/master/2024_08_15_00_hotfixes.sql @@ -0,0 +1,21 @@ +ALTER TABLE `creature_model_data` MODIFY `MountScaleOther1` float NOT NULL DEFAULT 0 AFTER `Unknown1100`; +ALTER TABLE `creature_model_data` MODIFY `MountScaleOther2` float NOT NULL DEFAULT 0 AFTER `MountScaleOther1`; + +ALTER TABLE `friendship_rep_reaction` MODIFY `FriendshipRepID` int NOT NULL DEFAULT 0 AFTER `Reaction`; +ALTER TABLE `friendship_rep_reaction` MODIFY `ReactionThreshold` int NOT NULL DEFAULT 0 AFTER `FriendshipRepID`; + +ALTER TABLE `garr_mission` MODIFY `GarrFollowerTypeID` tinyint NOT NULL DEFAULT 0 AFTER `GarrMissionTypeID`; + +ALTER TABLE `garr_plot` MODIFY `PlotType` tinyint NOT NULL DEFAULT 0 AFTER `Name`; + +ALTER TABLE `map_difficulty` ADD `WorldStateExpressionID` int NOT NULL DEFAULT 0 AFTER `ContentTuningID`; + +ALTER TABLE `quest_sort` ADD `Flags` int NOT NULL DEFAULT 0 AFTER `UiOrderIndex`; + +ALTER TABLE `spell_shapeshift_form` DROP `CreatureDisplayID2`; +ALTER TABLE `spell_shapeshift_form` DROP `CreatureDisplayID3`; +ALTER TABLE `spell_shapeshift_form` DROP `CreatureDisplayID4`; + +ALTER TABLE `trait_cond` ADD `TraitNodeEntryID` int NOT NULL DEFAULT 0 AFTER `TraitNodeID`; + +ALTER TABLE `ui_map` ADD `MapArtZoneTextPosition` tinyint NOT NULL DEFAULT 0 AFTER `AdventureMapTextureKitID`; |
