aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2016-05-02 18:52:15 +0200
committerShauren <shauren.trinity@gmail.com>2016-05-02 18:52:15 +0200
commit110ae3e6261694cd5a9ad1687ee209ef42a55c3e (patch)
tree77310f66c1d1d703ae9b8723d8aa0b6e2ce3dfe0 /sql/updates
parente8730061530cba48703508297dedc8aeb49681b1 (diff)
Core/Spells: Implemented RPPM proc effects
Closes #17001
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/hotfixes/6.x/2016_05_02_00_hotfixes.sql26
1 files changed, 26 insertions, 0 deletions
diff --git a/sql/updates/hotfixes/6.x/2016_05_02_00_hotfixes.sql b/sql/updates/hotfixes/6.x/2016_05_02_00_hotfixes.sql
new file mode 100644
index 00000000000..8a20e13d4c5
--- /dev/null
+++ b/sql/updates/hotfixes/6.x/2016_05_02_00_hotfixes.sql
@@ -0,0 +1,26 @@
+--
+-- Table structure for table `spell_procs_per_minute`
+--
+
+DROP TABLE IF EXISTS `spell_procs_per_minute`;
+CREATE TABLE `spell_procs_per_minute` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `BaseProcRate` float NOT NULL DEFAULT '0',
+ `Flags` 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 `spell_procs_per_minute_mod`
+--
+DROP TABLE IF EXISTS `spell_procs_per_minute_mod`;
+CREATE TABLE `spell_procs_per_minute_mod` (
+ `ID` int(10) unsigned NOT NULL DEFAULT '0',
+ `Type` int(10) unsigned NOT NULL DEFAULT '0',
+ `Param` int(10) unsigned NOT NULL DEFAULT '0',
+ `Coeff` float NOT NULL DEFAULT '0',
+ `SpellProcsPerMinuteID` int(10) unsigned NOT NULL DEFAULT '0',
+ `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0',
+ PRIMARY KEY (`ID`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;