Skip to content

Commit

Permalink
Fix Head of Ras not lootable (vmangos#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuybrushGit authored and bladezLH committed Mar 13, 2018
1 parent d283ce7 commit 5c73f3b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions sql/migrations/20180312195645_world.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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`='20180312195645');
IF v=0 THEN
INSERT INTO `migrations` VALUES ('20180312195645');
-- Add your query below.

REPLACE INTO `spell_mod` (`Id`, `AttributesEx3`, `Comment`) VALUES (17186, 1048576, 'Ras Becomes a Boy - Death Persistent');

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

0 comments on commit 5c73f3b

Please sign in to comment.