Skip to content

Commit

Permalink
Define targets for Spectral Tutor's Image Projection aoe leech.
Browse files Browse the repository at this point in the history
  • Loading branch information
ratkosrb committed Jun 17, 2024
1 parent 8819ab1 commit 0a74bad
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions sql/migrations/20240617175949_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
DROP PROCEDURE IF EXISTS add_migration;
DELIMITER ??
CREATE PROCEDURE `add_migration`()
BEGIN
DECLARE v INT DEFAULT 1;
SET v = (SELECT COUNT(*) FROM `migrations` WHERE `id`='20240617175949');
IF v = 0 THEN
INSERT INTO `migrations` VALUES ('20240617175949');
-- Add your query below.


-- Define targets for Spectral Tutor's Image Projection aoe leech.
INSERT INTO `spell_script_target` (`entry`, `type`, `targetEntry`, `conditionId`, `inverseEffectMask`, `build_min`, `build_max`) VALUES (17652, 1, 11263, 0, 0, 0, 5875);


-- End of migration.
END IF;
END??
DELIMITER ;
CALL add_migration();
DROP PROCEDURE IF EXISTS add_migration;

0 comments on commit 0a74bad

Please sign in to comment.