server/sql/updates/0.13/7024_01_mangos_spell_chain.sql
VladimirMangos a2b952b15e [8333] Move sql updates related to 0.13 release to sql/updates/0.13
You can still used its (for example to upgrade DB from 0.12 state)
but its will not included in installed sql updates list at Unix/Linus
for speedup 'make install'.
2009-08-09 02:31:38 +04:00

31 lines
999 B
SQL

ALTER TABLE db_version CHANGE COLUMN required_7015_01_mangos_item_template required_7024_01_mangos_spell_chain bit;
/* Lifeblood (Herbalizm) */
DELETE FROM `spell_chain` WHERE `spell_id` IN (55428,55480,55500,55501,55502,55503);
INSERT INTO `spell_chain` VALUES
(55428,0,55428,1,0),
(55480,55428,55428,2,0),
(55500,55480,55428,3,0),
(55501,55500,55428,4,0),
(55502,55501,55428,5,0),
(55503,55502,55428,6,0);
/* Toughness (Mining) */
DELETE FROM `spell_chain` WHERE `spell_id` IN (53120,53121,53122,53123,53124,53040);
INSERT INTO `spell_chain` VALUES
(53120,0,53120,1,0),
(53121,53120,53120,2,0),
(53122,53121,53120,3,0),
(53123,53122,53120,4,0),
(53124,53123,53120,5,0),
(53040,53124,53120,6,0);
/* Master of Anatomy (Skinning) */
DELETE FROM `spell_chain` WHERE `spell_id` IN (53125,53662,53663,53664,53665,53666);
INSERT INTO `spell_chain` VALUES
(53125,0,53125,1,0),
(53662,53125,53125,2,0),
(53663,53662,53125,3,0),
(53664,53663,53125,4,0),
(53665,53664,53125,5,0),
(53666,53665,53125,6,0);