aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/auth
diff options
context:
space:
mode:
authorMitchesD <majklprofik@seznam.cz>2015-10-16 22:54:46 +0200
committerMitchesD <majklprofik@seznam.cz>2015-10-16 23:09:42 +0200
commit9fe29de260b704603f40a8912c66dccf76fd0db8 (patch)
tree9043feef93fbf09a17bc83f3db687494a6da737d /sql/updates/auth
parent43f4e32cabc2d9329affda2cdabe0fc735cd849b (diff)
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
Diffstat (limited to 'sql/updates/auth')
-rw-r--r--sql/updates/auth/2015_10_16_00_auth.sql8
1 files changed, 8 insertions, 0 deletions
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;