diff options
author | Shauren <shauren.trinity@gmail.com> | 2015-07-02 00:30:54 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2015-07-02 00:30:54 +0200 |
commit | cc7c5d812253c482ff06925c644746b04516b582 (patch) | |
tree | 431d9494d49c7eff087e602ad87f913c80e36a2c | |
parent | 4bbbd9540a25845edb0d424199bab196b5e6bea1 (diff) |
DB: Updated build data to 20182
-rw-r--r-- | sql/base/auth_database.sql | 4 | ||||
-rw-r--r-- | sql/updates/auth/2015_07_02_00_auth.sql | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sql/base/auth_database.sql b/sql/base/auth_database.sql index 545e4e3baf6..db90487c5b5 100644 --- a/sql/base/auth_database.sql +++ b/sql/base/auth_database.sql @@ -251,7 +251,7 @@ CREATE TABLE `battlenet_components` ( LOCK TABLES `battlenet_components` WRITE; /*!40000 ALTER TABLE `battlenet_components` DISABLE KEYS */; -INSERT INTO `battlenet_components` VALUES ('Bnet','Mc64',37165),('Bnet','Win',37165),('Bnet','Wn64',37165),('WoW','base',19793),('WoW','deDE',0),('WoW','enCN',0),('WoW','enGB',0),('WoW','enTW',0),('WoW','enUS',0),('WoW','esES',0),('WoW','esMX',0),('WoW','frFR',0),('WoW','itIT',0),('WoW','koKR',0),('WoW','Mc64',19865),('WoW','ptBR',0),('WoW','ptPT',0),('WoW','ruRU',0),('WoW','Win',19865),('WoW','Wn64',19865),('WoW','zhCN',0),('WoW','zhTW',0); +INSERT INTO `battlenet_components` VALUES ('Bnet','Mc64',37165),('Bnet','Win',37165),('Bnet','Wn64',37165),('WoW','base',20182),('WoW','deDE',0),('WoW','enCN',0),('WoW','enGB',0),('WoW','enTW',0),('WoW','enUS',0),('WoW','esES',0),('WoW','esMX',0),('WoW','frFR',0),('WoW','itIT',0),('WoW','koKR',0),('WoW','Mc64',20182),('WoW','ptBR',0),('WoW','ptPT',0),('WoW','ruRU',0),('WoW','Win',20182),('WoW','Wn64',20182),('WoW','zhCN',0),('WoW','zhTW',0); /*!40000 ALTER TABLE `battlenet_components` ENABLE KEYS */; UNLOCK TABLES; @@ -581,7 +581,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,2,1,0,0,19793,2,1); +INSERT INTO `realmlist` VALUES (1,'Trinity','127.0.0.1','127.0.0.1','255.255.255.0',8085,0,2,1,0,0,20182,2,1); /*!40000 ALTER TABLE `realmlist` ENABLE KEYS */; UNLOCK TABLES; diff --git a/sql/updates/auth/2015_07_02_00_auth.sql b/sql/updates/auth/2015_07_02_00_auth.sql new file mode 100644 index 00000000000..42aaed44b9f --- /dev/null +++ b/sql/updates/auth/2015_07_02_00_auth.sql @@ -0,0 +1,3 @@ +UPDATE `realmlist` SET `gamebuild`=20182 WHERE `gamebuild`=19793; +UPDATE `battlenet_components` SET `Build`=20182 WHERE `Program`='WoW' AND `Platform`='base' AND `Build`=19793; +UPDATE `battlenet_components` SET `Build`=20182 WHERE `Program`='WoW' AND `Platform` IN ('Mc64','Win','Wn64') AND `Build`=19865; |