aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2024-12-05 23:25:58 +0100
committerShauren <shauren.trinity@gmail.com>2024-12-05 23:25:58 +0100
commit8e266ca37385a8d4c10e00e96cb684ded2ea40b6 (patch)
treea16339146a37dea072b3eb2d448fbf11c3023d1c /sql/updates
parent4ebece99469ad2b123a271167f774bc7a4d96240 (diff)
Core: Updated allowed build to 4.4.1.57916
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/auth/cata_classic/2024_12_05_00_auth.sql17
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/auth/cata_classic/2024_12_05_00_auth.sql b/sql/updates/auth/cata_classic/2024_12_05_00_auth.sql
new file mode 100644
index 00000000000..3fba8b26960
--- /dev/null
+++ b/sql/updates/auth/cata_classic/2024_12_05_00_auth.sql
@@ -0,0 +1,17 @@
+DELETE FROM `build_info` WHERE `build` IN (57916);
+INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES
+(57916,4,4,1,NULL);
+
+DELETE FROM `build_auth_key` WHERE `build`=57916 AND `platform`='Mac' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57916 AND `platform`='Mac' AND `arch`='x64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57916 AND `platform`='Win' AND `arch`='A64' AND `type`='WoW';
+DELETE FROM `build_auth_key` WHERE `build`=57916 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW';
+INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES
+(57916,'Mac','A64','WoW',0x6D5239A8150D6F988929E03A76782836),
+(57916,'Mac','x64','WoW',0x35F1A99195794D82981336E2A92695E7),
+(57916,'Win','A64','WoW',0xDEB31A3F7A285EB69D27F4C1C6134D29),
+(57916,'Win','x64','WoW',0x20696E852F3B5EE83866BF2A0D34470B);
+
+UPDATE `realmlist` SET `gamebuild`=57916 WHERE `gamebuild`=57564;
+
+ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '57916';