aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/hotfixes
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-08-25 19:12:00 +0200
committerShauren <shauren.trinity@gmail.com>2016-08-25 19:12:00 +0200
commita727a99e34a1a50b4b7589ab549751caa63282b0 (patch)
tree65c60c621ee2a8452acc03292c28e296897fbea9 /sql/updates/hotfixes
parente2f133902f8a37984e462a807a30a6663448d01e (diff)
Core/Players: Implemented new glyph system
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;