aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-07-05 22:07:35 +0200
committerShauren <shauren.trinity@gmail.com>2016-07-05 22:07:35 +0200
commitf7883bd5251a759da1ca8be3ba6f6cead36723ec (patch)
treeaffce8f9ad4b343ba936ad6effa2127ab7d831b1 /sql/updates/hotfixes
parentbc81ae70bc350a3decead610f1b17452bd44eec4 (diff)
Core/Transmog: Implemented transmog collection and updated transmog handling
Diffstat (limited to 'sql/updates/hotfixes')
-rw-r--r--sql/updates/hotfixes/2016_xx_xx_xx_hotfixes_legion_10.sql37
1 files changed, 37 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/2016_xx_xx_xx_hotfixes_legion_10.sql b/sql/updates/hotfixes/2016_xx_xx_xx_hotfixes_legion_10.sql
new file mode 100644
index 00000000000..bcd51ae80b9
--- /dev/null
+++ b/sql/updates/hotfixes/2016_xx_xx_xx_hotfixes_legion_10.sql
@@ -0,0 +1,37 @@
+--
+-- Table structure for table `item_search_name`
+--
+DROP TABLE IF EXISTS `item_search_name`;
+CREATE TABLE `item_search_name` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Name` text,
+ `Flags1` int(10) unsigned NOT NULL DEFAULT '0',
+ `Flags2` int(10) unsigned NOT NULL DEFAULT '0',
+ `Flags3` int(10) unsigned NOT NULL DEFAULT '0',
+ `AllowableRace` int(10) unsigned NOT NULL DEFAULT '0',
+ `RequiredSpell` int(10) unsigned NOT NULL DEFAULT '0',
+ `RequiredReputationFaction` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `RequiredSkill` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `RequiredSkillRank` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `ItemLevel` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `Quality` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `RequiredExpansion` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `RequiredReputationRank` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `RequiredLevel` tinyint(3) unsigned NOT NULL DEFAULT '0',
+ `AllowableClass` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `item_search_name_locale`
+--
+DROP TABLE IF EXISTS `item_search_name_locale`;
+CREATE TABLE `item_search_name_locale` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `locale` varchar(4) NOT NULL,
+ `Name_lang` text,
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`,`locale`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+