diff options
| author | QAston <none@none> | 2009-06-23 14:05:37 +0200 |
|---|---|---|
| committer | QAston <none@none> | 2009-06-23 14:05:37 +0200 |
| commit | f2ec641e429470bd3adc01bbdf1d62e900b5fa2a (patch) | |
| tree | 0165de38d0b67f0302fb494df07d02953a028d2b /sql/updates | |
| parent | 64786941ddf531bcd3b4bea1738151bfc46a19a7 (diff) | |
[8056] Move SMSG_CLEAR_COOLDOWN into function and use it. Other cleanups. Author:XTZGZoReX
[8060] Store spell_pet_auras for auraeffects instead of by whole aura Author:hunuza.
--HG--
branch : trunk
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/4212_world.sql | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/sql/updates/4212_world.sql b/sql/updates/4212_world.sql new file mode 100644 index 00000000000..2912d485aa2 --- /dev/null +++ b/sql/updates/4212_world.sql @@ -0,0 +1,17 @@ +ALTER TABLE spell_pet_auras ADD effectId TINYINT( 3 ) UNSIGNED NOT NULL AFTER spell; + +ALTER TABLE spell_pet_auras DROP PRIMARY KEY, ADD PRIMARY KEY(spell,effectId,pet); + +INSERT INTO spell_pet_auras VALUES +(56314, 0, 0, 57447), +(56314, 1, 0, 57485), +(56315, 0, 0, 57452), +(56315, 1, 0, 57484), +(56316, 0, 0, 57453), +(56316, 1, 0, 57483), +(56317, 0, 0, 57457), +(56317, 1, 0, 57482), +(56318, 0, 0, 57458), +(56318, 1, 0, 57475); + +DELETE FROM spell_linked_spell where `spell_trigger` in (57447,57482,57453, 57457, 57458); |
