aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates/hotfixes')
-rw-r--r--sql/updates/hotfixes/6.x/2016_08_25_00_hotfixes.sql23
1 files changed, 23 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/6.x/2016_08_25_00_hotfixes.sql b/sql/updates/hotfixes/6.x/2016_08_25_00_hotfixes.sql
new file mode 100644
index 00000000000..5ce42a281cd
--- /dev/null
+++ b/sql/updates/hotfixes/6.x/2016_08_25_00_hotfixes.sql
@@ -0,0 +1,23 @@
+--
+-- Table structure for table `glyph_bindable_spell`
+--
+DROP TABLE IF EXISTS `glyph_bindable_spell`;
+CREATE TABLE `glyph_bindable_spell` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `SpellID` int(10) unsigned NOT NULL DEFAULT '0',
+ `GlyphPropertiesID` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+--
+-- Table structure for table `glyph_required_spec`
+--
+DROP TABLE IF EXISTS `glyph_required_spec`;
+CREATE TABLE `glyph_required_spec` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `GlyphPropertiesID` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `ChrSpecializationID` smallint(5) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;