diff options
| author | Shauren <shauren.trinity@gmail.com> | 2016-03-28 17:12:57 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2016-03-28 17:12:57 +0200 |
| commit | dde620c402daf4ea8d132fb72a77eabc22f7a6d0 (patch) | |
| tree | 7c12161d7a22915736b0c9a106de896eeb283399 /sql/updates/auth | |
| parent | 619669c6209441fc2fb5b483d553badee8c30ad5 (diff) | |
Core: Updated to 6.2.4
* Rewrite bnetserver for new authentication protocol
Diffstat (limited to 'sql/updates/auth')
| -rw-r--r-- | sql/updates/auth/2016_03_28_00_auth.sql | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/sql/updates/auth/2016_03_28_00_auth.sql b/sql/updates/auth/2016_03_28_00_auth.sql new file mode 100644 index 00000000000..2adcb9bce4c --- /dev/null +++ b/sql/updates/auth/2016_03_28_00_auth.sql @@ -0,0 +1,21 @@ +DROP TABLE IF EXISTS `battlenet_components`; +DROP TABLE IF EXISTS `battlenet_modules`; + +DROP TABLE IF EXISTS `account_last_played_character`; +CREATE TABLE `account_last_played_character` ( + `accountId` int(10) unsigned NOT NULL, + `region` tinyint(3) unsigned NOT NULL, + `battlegroup` tinyint(3) unsigned NOT NULL, + `realmId` int(10) unsigned, + `characterName` varchar(12), + `characterGUID` bigint(20) unsigned, + `lastPlayedTime` int(10) unsigned, + PRIMARY KEY(`accountId`,`region`,`battlegroup`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +ALTER TABLE `battlenet_accounts` + DROP `s`, + DROP `v`, + DROP `sessionKey`; + +UPDATE `realmlist` SET `gamebuild`=21355 WHERE `gamebuild`=20726; |
