From 42f27af83c4f4f4f8e46b742a24c9c11fff8561a Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Thu, 15 Jul 2021 09:42:32 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): d0512d8bcd9b546965b8c07819043ad6ff3c01c7 --- data/sql/updates/db_world/2021_07_15_00.sql | 31 +++++++++++++++++++ .../rev_1626123639599949300.sql | 5 --- 2 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 data/sql/updates/db_world/2021_07_15_00.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1626123639599949300.sql diff --git a/data/sql/updates/db_world/2021_07_15_00.sql b/data/sql/updates/db_world/2021_07_15_00.sql new file mode 100644 index 000000000..0c6dd707d --- /dev/null +++ b/data/sql/updates/db_world/2021_07_15_00.sql @@ -0,0 +1,31 @@ +-- DB update 2021_07_14_00 -> 2021_07_15_00 +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_07_14_00'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_07_14_00 2021_07_15_00 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1626123639599949300'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626123639599949300'); + +DELETE FROM `quest_offer_reward` WHERE (`ID` = 1507); +INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES +(1507, 0, 0, 0, 0, 0, 0, 0, 0, 'Hm... $N. You are still new to your path, but I sense the possibility for greatness in you.$B$BYou were born with gifts, $N. See that they do not go to waste.', 12340); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_07_15_00' WHERE sql_rev = '1626123639599949300'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1626123639599949300.sql b/data/sql/updates/pending_db_world/rev_1626123639599949300.sql deleted file mode 100644 index c6282a41a..000000000 --- a/data/sql/updates/pending_db_world/rev_1626123639599949300.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1626123639599949300'); - -DELETE FROM `quest_offer_reward` WHERE (`ID` = 1507); -INSERT INTO `quest_offer_reward` (`ID`, `Emote1`, `Emote2`, `Emote3`, `Emote4`, `EmoteDelay1`, `EmoteDelay2`, `EmoteDelay3`, `EmoteDelay4`, `RewardText`, `VerifiedBuild`) VALUES -(1507, 0, 0, 0, 0, 0, 0, 0, 0, 'Hm... $N. You are still new to your path, but I sense the possibility for greatness in you.$B$BYou were born with gifts, $N. See that they do not go to waste.', 12340);