From f7883bd5251a759da1ca8be3ba6f6cead36723ec Mon Sep 17 00:00:00 2001 From: Shauren Date: Tue, 5 Jul 2016 22:07:35 +0200 Subject: Core/Transmog: Implemented transmog collection and updated transmog handling --- sql/updates/auth/2016_xx_xx_xx_auth_legion_00.sql | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 sql/updates/auth/2016_xx_xx_xx_auth_legion_00.sql (limited to 'sql/updates/auth') diff --git a/sql/updates/auth/2016_xx_xx_xx_auth_legion_00.sql b/sql/updates/auth/2016_xx_xx_xx_auth_legion_00.sql new file mode 100644 index 00000000000..5cbb737f518 --- /dev/null +++ b/sql/updates/auth/2016_xx_xx_xx_auth_legion_00.sql @@ -0,0 +1,22 @@ +-- +-- Table structure for table `battlenet_item_appearances` +-- +DROP TABLE IF EXISTS `battlenet_item_appearances`; +CREATE TABLE `battlenet_item_appearances` ( + `battlenetAccountId` int(10) unsigned NOT NULL, + `blobIndex` smallint(5) unsigned NOT NULL, + `appearanceMask` int(10) unsigned NOT NULL DEFAULT '0', + PRIMARY KEY (`battlenetAccountId`,`blobIndex`), + CONSTRAINT `fk_battlenet_item_appearances` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Table structure for table `battlenet_item_favorite_appearances` +-- +DROP TABLE IF EXISTS `battlenet_item_favorite_appearances`; +CREATE TABLE `battlenet_item_favorite_appearances` ( + `battlenetAccountId` int(10) unsigned NOT NULL, + `itemModifiedAppearanceId` int(10) unsigned NOT NULL, + PRIMARY KEY (`battlenetAccountId`,`itemModifiedAppearanceId`), + CONSTRAINT `fk_battlenet_item_favorite_appearances` FOREIGN KEY (`battlenetAccountId`) REFERENCES `battlenet_accounts` (`id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- cgit v1.2.3