diff options
-rw-r--r-- | sql/base/auth_database.sql | 10 | ||||
-rw-r--r-- | sql/updates/auth/master/2023_09_23_00_auth.sql | 7 |
2 files changed, 13 insertions, 4 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 54f12e71dcd..f2bb4f3ef7c 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -733,7 +733,8 @@ INSERT INTO `build_info` VALUES (51237,10,1,7,NULL,NULL,'C8660A21B766646FBD67F481CFCF55C3',NULL,NULL,NULL), (51261,10,1,7,NULL,NULL,'1BEBB57AE450331E9F8C301AA7876FAB',NULL,NULL,NULL), (51313,10,1,7,NULL,NULL,'35419ED0AB16735CF720858F45DC300C',NULL,NULL,NULL), -(51421,10,1,7,NULL,NULL,'45E24D6F3335269787DF2B2063939002',NULL,NULL,NULL); +(51421,10,1,7,NULL,NULL,'45E24D6F3335269787DF2B2063939002',NULL,NULL,NULL), +(51485,10,1,7,NULL,NULL,'EC549E1D0A5DD85C03E7A9D93B7DC6D1',NULL,NULL,NULL); /*!40000 ALTER TABLE `build_info` ENABLE KEYS */; UNLOCK TABLES; @@ -2341,7 +2342,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 '51421', + `gamebuild` int unsigned NOT NULL DEFAULT '51485', `Region` tinyint unsigned NOT NULL DEFAULT '1', `Battlegroup` tinyint unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), @@ -2356,7 +2357,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,51421,1,1); +(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,51485,1,1); /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; UNLOCK TABLES; @@ -2736,7 +2737,8 @@ INSERT INTO `updates` VALUES ('2023_09_07_00_auth.sql','9127F7B6723477DE25886D451FE174ABF2039B94','RELEASED','2023-09-07 00:30:01',0), ('2023_09_08_00_auth.sql','AA4E52CC2344F503151C88284807E8B7319B7C69','RELEASED','2023-09-08 21:46:01',0), ('2023_09_13_00_auth.sql','49C44AE960C71C71DC9966D10D8DAA127976D22B','RELEASED','2023-09-13 00:30:28',0), -('2023_09_20_00_auth.sql','6B3EAEB21A617564907EE843FC43272F0C020760','RELEASED','2023-09-20 04:49:35',0); +('2023_09_20_00_auth.sql','6B3EAEB21A617564907EE843FC43272F0C020760','RELEASED','2023-09-20 04:49:35',0), +('2023_09_23_00_auth.sql','B6250AE892CF5988FD4EB08EC35DE25096B52115','RELEASED','2023-09-23 01:57:24',0); /*!40000 ALTER TABLE `updates` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/auth/master/2023_09_23_00_auth.sql b/sql/updates/auth/master/2023_09_23_00_auth.sql new file mode 100644 index 00000000000..d86fdb5d8fa --- /dev/null +++ b/sql/updates/auth/master/2023_09_23_00_auth.sql @@ -0,0 +1,7 @@ +DELETE FROM `build_info` WHERE `build`=51485; +INSERT INTO `build_info` (`build`,`majorVersion`,`minorVersion`,`bugfixVersion`,`hotfixVersion`,`winAuthSeed`,`win64AuthSeed`,`mac64AuthSeed`,`winChecksumSeed`,`macChecksumSeed`) VALUES +(51485,10,1,7,NULL,NULL,'EC549E1D0A5DD85C03E7A9D93B7DC6D1',NULL,NULL,NULL); + +UPDATE `realmlist` SET `gamebuild`=51485 WHERE `gamebuild`=51421; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int unsigned NOT NULL DEFAULT '51485'; |