From 614b5832ba96b4c5905ece5490a7b5d18c2f710b Mon Sep 17 00:00:00 2001 From: MitchesD Date: Wed, 26 Aug 2015 11:12:35 +0200 Subject: Core/Player: implemented Toybox * now you can use all the things in toybox - add new toys, set them as favorite and use them --- sql/updates/auth/2015_08_26_00_auth.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/auth/2015_08_26_00_auth.sql (limited to 'sql/updates/auth') diff --git a/sql/updates/auth/2015_08_26_00_auth.sql b/sql/updates/auth/2015_08_26_00_auth.sql new file mode 100644 index 00000000000..e01f9c50a24 --- /dev/null +++ b/sql/updates/auth/2015_08_26_00_auth.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `battlenet_account_toys`; + +CREATE TABLE `battlenet_account_toys` ( + `accountId` int(10) unsigned NOT NULL, + `itemId` int(11) NOT NULL DEFAULT '0', + `isFavourite` tinyint(1) DEFAULT '0', + PRIMARY KEY (`accountId`,`itemId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- cgit v1.2.3