From 0ba2e0d5ee416a2daf89d53877984fb0cf27ca9b Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 8 Mar 2015 13:31:57 +0100 Subject: Core/Spells: Implemented multiple spell power costs --- sql/updates/hotfixes/2015_03_08_00_hotfixes.sql | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 sql/updates/hotfixes/2015_03_08_00_hotfixes.sql (limited to 'sql/updates') 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; -- cgit v1.2.3