aboutsummaryrefslogtreecommitdiff
path: root/sql/updates
diff options
context:
space:
mode:
Diffstat (limited to 'sql/updates')
-rw-r--r--sql/updates/9012_world_spell_script_names.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/9012_world_spell_script_names.sql b/sql/updates/9012_world_spell_script_names.sql
new file mode 100644
index 00000000000..410357f82f9
--- /dev/null
+++ b/sql/updates/9012_world_spell_script_names.sql
@@ -0,0 +1,6 @@
+DROP TABLE IF EXISTS `spell_script_names`;
+CREATE TABLE `spell_script_names` (
+ `spell_id` int(11) NOT NULL,
+ `ScriptName` char(64) NOT NULL,
+ UNIQUE (`spell_id`, `ScriptName`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;