From 80a76bad71559b715805f1468fbf182095d78c3b Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sun, 20 Jun 2021 12:12:30 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): 002ff53fe2b422d42716ac5a1e91ac5d5cbe0d1e --- data/sql/updates/db_world/2021_06_20_01.sql | 35 +++++++++++++++++++ .../rev_1623848244419594409.sql | 9 ----- 2 files changed, 35 insertions(+), 9 deletions(-) create mode 100644 data/sql/updates/db_world/2021_06_20_01.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1623848244419594409.sql diff --git a/data/sql/updates/db_world/2021_06_20_01.sql b/data/sql/updates/db_world/2021_06_20_01.sql new file mode 100644 index 000000000..0026433c0 --- /dev/null +++ b/data/sql/updates/db_world/2021_06_20_01.sql @@ -0,0 +1,35 @@ +-- DB update 2021_06_20_00 -> 2021_06_20_01 +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_06_20_00'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_06_20_00 2021_06_20_01 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1623848244419594409'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623848244419594409'); + +-- Changes Tunnel Rat Ear drop rate to 38% for Geomancers, Diggers and Surveyors +UPDATE `creature_loot_template` SET `Chance` = 38 WHERE `entry` IN (1174, 1175, 1177) AND `item` = 3110; + +-- Adds Tunnel Rat Ears to Scouts with 38% drop rate +DELETE FROM `creature_loot_template` WHERE `Entry` = 1173 AND `Item` = 3110; +INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES +(1173, 3110, 0, 38, 1, 1, 0, 1, 1, 'Quest drop for Rat Catching'); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_06_20_01' WHERE sql_rev = '1623848244419594409'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1623848244419594409.sql b/data/sql/updates/pending_db_world/rev_1623848244419594409.sql deleted file mode 100644 index ef195a994..000000000 --- a/data/sql/updates/pending_db_world/rev_1623848244419594409.sql +++ /dev/null @@ -1,9 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1623848244419594409'); - --- Changes Tunnel Rat Ear drop rate to 38% for Geomancers, Diggers and Surveyors -UPDATE `creature_loot_template` SET `Chance` = 38 WHERE `entry` IN (1174, 1175, 1177) AND `item` = 3110; - --- Adds Tunnel Rat Ears to Scouts with 38% drop rate -DELETE FROM `creature_loot_template` WHERE `Entry` = 1173 AND `Item` = 3110; -INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES -(1173, 3110, 0, 38, 1, 1, 0, 1, 1, 'Quest drop for Rat Catching');