diff options
author | Shauren <shauren.trinity@gmail.com> | 2018-04-06 18:03:08 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2018-04-06 18:03:08 +0200 |
commit | 72a9a8a29c4e7af6ece82ebd7b0330403ee38e57 (patch) | |
tree | 2a93d6ff5299a4a0eeec262a5521dd1afcae36c5 /sql | |
parent | 32563ef25bde27a93a99d5ced58ff206cf600d0d (diff) |
Core: Updated allowed build to 7.3.5.26365
Diffstat (limited to 'sql')
-rw-r--r-- | sql/base/auth_database.sql | 11 | ||||
-rw-r--r-- | sql/updates/auth/master/2018_04_06_00_auth.sql | 3 |
2 files changed, 9 insertions, 5 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 5d1e1968b47..d935c3493ae 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -2076,7 +2076,7 @@ CREATE TABLE `realmlist` ( `timezone` tinyint(3) unsigned NOT NULL DEFAULT '0', `allowedSecurityLevel` tinyint(3) unsigned NOT NULL DEFAULT '0', `population` float unsigned NOT NULL DEFAULT '0', - `gamebuild` int(10) unsigned NOT NULL DEFAULT '26124', + `gamebuild` int(10) unsigned NOT NULL DEFAULT '26365', `Region` tinyint(3) unsigned NOT NULL DEFAULT '2', `Battlegroup` tinyint(3) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), @@ -2091,7 +2091,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,26124,2,1); +(1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,0,1,0,0,26365,2,1); /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; UNLOCK TABLES; @@ -2234,9 +2234,10 @@ INSERT INTO `updates` VALUES ('2017_12_31_00_auth.sql','1721ACBD35EB95FAE33B9E95F8C4E4B1FB70A5E4','ARCHIVED','2017-12-31 20:15:23',0), ('2018_01_02_00_auth.sql','CD9B826B9D95697DC412DEF780E814FA3991D6CD','ARCHIVED','2018-01-02 20:40:37',0), ('2018_02_18_00_auth.sql','8489DD3EFFE14A7486B593435F0BA2BC69B6EABF','ARCHIVED','2018-02-18 16:35:55',0), -('2018_02_19_00_auth.sql','07CE658C5EF88693D3C047EF8E724F94ADA74C15','ARCHIVED','2018-02-19 22:33:32',233), -('2018_02_28_00_auth.sql','E92EF4ABF7FA0C66649E1633DD0459F44C09EB83','ARCHIVED','2018-02-28 23:07:59',0), -('2018_03_14_00_auth.sql','2D71E93DF7419A30D0D21D8A80CF05698302575A','ARCHIVED','2018-03-14 23:07:59',0); +('2018_02_19_00_auth.sql','07CE658C5EF88693D3C047EF8E724F94ADA74C15','RELEASED','2018-02-19 22:33:32',233), +('2018_02_28_00_auth.sql','E92EF4ABF7FA0C66649E1633DD0459F44C09EB83','RELEASED','2018-02-28 23:07:59',0), +('2018_03_14_00_auth.sql','2D71E93DF7419A30D0D21D8A80CF05698302575A','RELEASED','2018-03-14 23:07:59',0), +('2018_04_06_00_auth.sql','D8416F0C4751763202B1997C81423F6EE2FCF9A6','RELEASED','2018-04-06 18:00:32',0); /*!40000 ALTER TABLE `updates` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/auth/master/2018_04_06_00_auth.sql b/sql/updates/auth/master/2018_04_06_00_auth.sql new file mode 100644 index 00000000000..8edc1a3f13e --- /dev/null +++ b/sql/updates/auth/master/2018_04_06_00_auth.sql @@ -0,0 +1,3 @@ +UPDATE `realmlist` SET `gamebuild`=26365 WHERE `gamebuild`=26124; + +ALTER TABLE `realmlist` CHANGE `gamebuild` `gamebuild` int(10) unsigned NOT NULL DEFAULT '26365'; |