From 9fe29de260b704603f40a8912c66dccf76fd0db8 Mon Sep 17 00:00:00 2001 From: MitchesD Date: Fri, 16 Oct 2015 22:54:46 +0200 Subject: Core/Player: implemented Heirloom Collection * implemented all things related to that collection * you can create heirloom by click on item in collection * also you can upgrade heirlooms by using specific kits * old heirlooms are converted to new ones --- sql/updates/auth/2015_10_16_00_auth.sql | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 sql/updates/auth/2015_10_16_00_auth.sql (limited to 'sql/updates/auth') diff --git a/sql/updates/auth/2015_10_16_00_auth.sql b/sql/updates/auth/2015_10_16_00_auth.sql new file mode 100644 index 00000000000..1efefca6c9a --- /dev/null +++ b/sql/updates/auth/2015_10_16_00_auth.sql @@ -0,0 +1,8 @@ +DROP TABLE IF EXISTS `battlenet_account_heirlooms`; + +CREATE TABLE `battlenet_account_heirlooms` ( + `accountId` int(10) unsigned NOT NULL, + `itemId` int(11) unsigned NOT NULL DEFAULT '0', + `flags` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`accountId`,`itemId`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- cgit v1.2.3