From a1a878d55c983584df27169f40e712290b997647 Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sun, 17 Oct 2021 17:43:23 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): 644d7f512440fbe793d97243fdc87988d2b97131 --- data/sql/updates/db_world/2021_10_17_02.sql | 38 +++++++++++++++++++ .../rev_1634045250480483175.sql | 12 ------ 2 files changed, 38 insertions(+), 12 deletions(-) create mode 100644 data/sql/updates/db_world/2021_10_17_02.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1634045250480483175.sql diff --git a/data/sql/updates/db_world/2021_10_17_02.sql b/data/sql/updates/db_world/2021_10_17_02.sql new file mode 100644 index 000000000..6846b923b --- /dev/null +++ b/data/sql/updates/db_world/2021_10_17_02.sql @@ -0,0 +1,38 @@ +-- DB update 2021_10_17_01 -> 2021_10_17_02 +DROP PROCEDURE IF EXISTS `updateDb`; +DELIMITER // +CREATE PROCEDURE updateDb () +proc:BEGIN DECLARE OK VARCHAR(100) DEFAULT 'FALSE'; +SELECT COUNT(*) INTO @COLEXISTS +FROM information_schema.COLUMNS +WHERE TABLE_SCHEMA = DATABASE() AND TABLE_NAME = 'version_db_world' AND COLUMN_NAME = '2021_10_17_01'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_17_01 2021_10_17_02 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1634045250480483175'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634045250480483175'); + +-- Deletes Black Metal War Axe from the RLT 24068 +DELETE FROM `reference_loot_template` WHERE `Entry` = 24068 AND `Item` = 2015; + +-- Adds Black Metal War Axe to Brain Eaters directly +DELETE FROM `creature_loot_template` WHERE `Entry` = 570 AND `Item` = 2015; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(570, 2015, 0, 0.9, 0, 1, 0, 1, 1, ''); + +-- Reduces the drop chance of Nightcrawler to not exceed 100 % overall loot chance for Brain Eaters +UPDATE `creature_loot_template` SET `Chance` = 32.28 WHERE `Entry` = 570 AND `Item` = 6530; + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_17_02' WHERE sql_rev = '1634045250480483175'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1634045250480483175.sql b/data/sql/updates/pending_db_world/rev_1634045250480483175.sql deleted file mode 100644 index 4781690b4..000000000 --- a/data/sql/updates/pending_db_world/rev_1634045250480483175.sql +++ /dev/null @@ -1,12 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634045250480483175'); - --- Deletes Black Metal War Axe from the RLT 24068 -DELETE FROM `reference_loot_template` WHERE `Entry` = 24068 AND `Item` = 2015; - --- Adds Black Metal War Axe to Brain Eaters directly -DELETE FROM `creature_loot_template` WHERE `Entry` = 570 AND `Item` = 2015; -INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES -(570, 2015, 0, 0.9, 0, 1, 0, 1, 1, ''); - --- Reduces the drop chance of Nightcrawler to not exceed 100 % overall loot chance for Brain Eaters -UPDATE `creature_loot_template` SET `Chance` = 32.28 WHERE `Entry` = 570 AND `Item` = 6530;