diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/base/auth_database.sql | 13 | ||||
-rw-r--r-- | sql/updates/auth/cata_classic/2024_09_17_00_auth.sql | 11 |
2 files changed, 19 insertions, 5 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index ff313bc22d8..9d1b2874248 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -739,7 +739,8 @@ INSERT INTO `build_auth_key` VALUES (55613,'Win','x64','WoW',0x0ba3bff2e324fe30d15ba8a88cf8738b), (55639,'Win','x64','WoW',0xffd74533a9d95e1d38c972ba4f351b8d), (56014,'Win','x64','WoW',0x89ad7a75e156374d41f0cc70455b2f6b), -(56420,'Win','x64','WoW',0xa8e98c37f813d988c81256424a024ab0); +(56420,'Win','x64','WoW',0xa8e98c37f813d988c81256424a024ab0), +(56489,'Win','x64','WoW',0xa3fc116bb68fa279dbb66b4024305d99); /*!40000 ALTER TABLE `build_auth_key` ENABLE KEYS */; UNLOCK TABLES; @@ -1051,7 +1052,8 @@ INSERT INTO `build_info` VALUES (55613,4,4,0,NULL), (55639,4,4,0,NULL), (56014,4,4,0,NULL), -(56420,4,4,0,NULL); +(56420,4,4,0,NULL), +(56489,4,4,0,NULL); /*!40000 ALTER TABLE `build_info` ENABLE KEYS */; UNLOCK TABLES; @@ -2661,7 +2663,7 @@ CREATE TABLE `realmlist` ( `timezone` tinyint unsigned NOT NULL DEFAULT '0', `allowedSecurityLevel` tinyint unsigned NOT NULL DEFAULT '0', `population` float unsigned NOT NULL DEFAULT '0', - `gamebuild` int unsigned NOT NULL DEFAULT '56420', + `gamebuild` int unsigned NOT NULL DEFAULT '56489', `Region` tinyint unsigned NOT NULL DEFAULT '1', `Battlegroup` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), @@ -2676,7 +2678,7 @@ CREATE TABLE `realmlist` ( LOCK TABLES `realmlist` WRITE; /*!40000 ALTER TABLE `realmlist` DISABLE KEYS */; INSERT INTO `realmlist` VALUES -(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56420,1,1); +(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,56489,1,1); /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; UNLOCK TABLES; @@ -3109,7 +3111,8 @@ INSERT INTO `updates` VALUES ('2024_08_18_00_auth.sql','5C1D0A3FE0245F4030FE446288AE533556EC6C9E','RELEASED','2024-08-18 20:36:28',0), ('2024_08_28_01_auth.sql','BC5D74553AF2D92606F55C1C462D2700FE73BD34','RELEASED','2024-08-29 04:45:54',0), ('2024_08_30_00_auth.sql','BD76942F1C29AAA2450E051E7CA552672B5E331B','RELEASED','2024-08-30 19:24:30',0), -('2024_09_04_00_auth.sql','FE7307AD520718D7F71F1264B58AA0DC9E4BEFAE','RELEASED','2024-09-04 09:54:29',0); +('2024_09_04_00_auth.sql','FE7307AD520718D7F71F1264B58AA0DC9E4BEFAE','RELEASED','2024-09-04 09:54:29',0), +('2024_09_17_00_auth.sql','CC4FD75037646F91F05FB8D7A9BE836A76B8F668','RELEASED','2024-09-17 01:41:19',0); /*!40000 ALTER TABLE `updates` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/auth/cata_classic/2024_09_17_00_auth.sql b/sql/updates/auth/cata_classic/2024_09_17_00_auth.sql new file mode 100644 index 00000000000..d72117fae16 --- /dev/null +++ b/sql/updates/auth/cata_classic/2024_09_17_00_auth.sql @@ -0,0 +1,11 @@ +DELETE FROM `build_info` WHERE `build` IN (56489); +INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`) VALUES +(56489,4,4,0,NULL); + +DELETE FROM `build_auth_key` WHERE `build`=56489 AND `platform`='Win' AND `arch`='x64' AND `type`='WoW'; +INSERT INTO `build_auth_key` (`build`,`platform`,`arch`,`type`,`key`) VALUES +(56489,'Win','x64','WoW',0xA3FC116BB68FA279DBB66B4024305D99); + +UPDATE `realmlist` SET `gamebuild`=56489 WHERE `gamebuild`=56420; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '56489'; |