port over some changes from Trinity version including one possible memory leak fix
[AHbot.git] / sql / updates / 7324_02_characters_character_aura.sql
blobc9379d25788c1643e2982acf6fe2cb5bd3c36945
1 ALTER TABLE character_db_version CHANGE COLUMN required_7324_01_characters_character_spell required_7324_02_characters_character_aura bit;
3 /* remove some deleted spells or ranks from characters auras */
4 /* Mana Tap no longer Blood Elf Racial */
5 DELETE FROM `character_aura` WHERE `spell` = '28734';
6 /* Hamstring is only one rank now, need to delete these zzOLDRank spells */
7 DELETE FROM `character_aura` WHERE `spell` IN ('7373', '7372', '25212');
8 /* Intercept is only one rank now, need to delete these zzOLDRank spells */
9 DELETE FROM `character_aura` WHERE `spell` IN ('20616', '20617', '25272', '25275');
10 /* Overpower is only one rank now, need to delete these zzOLDRank spells */
11 DELETE FROM `character_aura` WHERE `spell` IN ('7887', '11584', '11585');
12 /* Shield Bash is only one rank now, need to delete these zzOLDRank spells */
13 DELETE FROM `character_aura` WHERE `spell` IN ('1671', '1672', '29704');