Skip to content

Commit

Permalink
Core: Update allowed build to 10.2.5.54630
Browse files Browse the repository at this point in the history
  • Loading branch information
mdX7 committed May 9, 2024
1 parent c603c52 commit 0f73cf1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 6 additions & 4 deletions sql/base/auth_database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,8 @@ INSERT INTO `build_info` VALUES
(54499,10,2,6,NULL,NULL,'6AC1F6180FC4C390F782DB933BD83326',NULL,NULL,NULL),
(54577,10,2,7,NULL,NULL,'CBBBBBFFB2C652F0F4A7848D86E1B063',NULL,NULL,NULL),
(54601,10,2,7,NULL,NULL,'F8B866CF7DB9A12273F35B3929627375',NULL,NULL,NULL),
(54604,10,2,7,NULL,NULL,'A5FF4CE535F69D4D7F638CB2C11F2243',NULL,NULL,NULL);
(54604,10,2,7,NULL,NULL,'A5FF4CE535F69D4D7F638CB2C11F2243',NULL,NULL,NULL),
(54630,10,2,7,NULL,NULL,'F37935510BA6B559363C160E1DF18230',NULL,NULL,NULL);
/*!40000 ALTER TABLE `build_info` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down Expand Up @@ -2387,7 +2388,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 '54604',
`gamebuild` int unsigned NOT NULL DEFAULT '54630',
`Region` tinyint unsigned NOT NULL DEFAULT '1',
`Battlegroup` tinyint unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
Expand All @@ -2402,7 +2403,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,54604,1,1);
(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,54630,1,1);
/*!40000 ALTER TABLE `realmlist` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down Expand Up @@ -2824,7 +2825,8 @@ INSERT INTO `updates` VALUES
('2024_04_12_00_auth.sql','3D2DCEA21AE5104EF192CACAAFBB5131AD355791','RELEASED','2024-04-12 12:07:49',0),
('2024_04_22_00_auth.sql','83566EA54235D588697D747D8130CD6D37445CC5','RELEASED','2024-04-22 23:05:46',0),
('2024_05_01_00_auth.sql','2A1C2B4E54706BDD1FDD57AFB943058BEE8D8852','RELEASED','2024-05-01 21:32:43',0),
('2024_05_08_00_auth.sql','F2EEE0D225CB82DBB3A478E0BF6A0116C9265355','RELEASED','2024-05-08 20:35:53',0);
('2024_05_08_00_auth.sql','F2EEE0D225CB82DBB3A478E0BF6A0116C9265355','RELEASED','2024-05-08 20:35:53',0),
('2024_05_10_00_auth.sql','8A6E48012413EA769601A8E4C9F82BEFBE1FCA5C','RELEASED','2024-05-10 00:50:46',0);
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
UNLOCK TABLES;

Expand Down
7 changes: 7 additions & 0 deletions sql/updates/auth/master/2024_05_10_00_auth.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
DELETE FROM `build_info` WHERE `build`=54630;
INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES
(54630,10,2,7,NULL,NULL,'F37935510BA6B559363C160E1DF18230',NULL,NULL,NULL);

UPDATE `realmlist` SET `gamebuild`=54630 WHERE `gamebuild`=54604;

ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '54630';

1 comment on commit 0f73cf1

@mdX7
Copy link
Member Author

@mdX7 mdX7 commented on 0f73cf1 May 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

10.2.7.54630

Please sign in to comment.