diff options
| author | thenecromancer <none@none> | 2010-01-23 17:46:03 +0100 |
|---|---|---|
| committer | thenecromancer <none@none> | 2010-01-23 17:46:03 +0100 |
| commit | b2bb515c22067f3b693f1a078d6b4d342fe1b95b (patch) | |
| tree | 446547d9f78ca36f491eb76400e37e1d8a0bc416 | |
| parent | d32e0878c72801de5d9753211df4fcfadd55dea5 (diff) | |
table create for previous commit
--HG--
branch : trunk
| -rw-r--r-- | sql/updates/7168_world_spell_stack_masks.sql | 7 |
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;
|
