aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sql/updates/7168_world_spell_stack_masks.sql7
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/updates/7168_world_spell_stack_masks.sql b/sql/updates/7168_world_spell_stack_masks.sql
new file mode 100644
index 00000000000..c3e4f0c1275
--- /dev/null
+++ b/sql/updates/7168_world_spell_stack_masks.sql
@@ -0,0 +1,7 @@
+DROP TABLE IF EXISTS `spell_stack_masks`;
+
+CREATE TABLE `spell_stack_masks` (
+ `id` int(32) unsigned NOT NULL default '0',
+ `mask` int(64) unsigned NOT NULL default '0',
+ PRIMARY KEY (`id`)
+) ENGINE=InnoDB DEFAULT CHARSET=utf8;