aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/hotfixes/2015_03_08_00_hotfixes.sql24
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/2015_03_08_00_hotfixes.sql b/sql/updates/hotfixes/2015_03_08_00_hotfixes.sql
new file mode 100644
index 00000000000..9f2f8516eb8
--- /dev/null
+++ b/sql/updates/hotfixes/2015_03_08_00_hotfixes.sql
@@ -0,0 +1,24 @@
+--
+-- Table structure for table `spell_power_difficulty`
+--
+
+DROP TABLE IF EXISTS `spell_power_difficulty`;
+/*!40101 SET @saved_cs_client = @@character_set_client */;
+/*!40101 SET character_set_client = utf8 */;
+CREATE TABLE `spell_power_difficulty` (
+ `SpellPowerID` int(10) unsigned NOT NULL DEFAULT '0',
+ `DifficultyID` int(10) unsigned NOT NULL DEFAULT '0',
+ `PowerIndex` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`SpellPowerID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+/*!40101 SET character_set_client = @saved_cs_client */;
+
+--
+-- Dumping data for table `spell_power_difficulty`
+--
+
+LOCK TABLES `spell_power_difficulty` WRITE;
+/*!40000 ALTER TABLE `spell_power_difficulty` DISABLE KEYS */;
+/*!40000 ALTER TABLE `spell_power_difficulty` ENABLE KEYS */;
+UNLOCK TABLES;