From 667c294557e6bfbcc3ca63bbc6dcb0f4cef30988 Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sun, 31 Oct 2021 15:42:51 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): b6ad5bf8adb0138da9b678c930034cf470c5f8dd --- .../2021_10_31_04.sql} | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) rename data/sql/updates/{pending_db_world/rev_1634939032065262806.sql => db_world/2021_10_31_04.sql} (88%) diff --git a/data/sql/updates/pending_db_world/rev_1634939032065262806.sql b/data/sql/updates/db_world/2021_10_31_04.sql similarity index 88% rename from data/sql/updates/pending_db_world/rev_1634939032065262806.sql rename to data/sql/updates/db_world/2021_10_31_04.sql index f9024715c..f13ad9da1 100644 --- a/data/sql/updates/pending_db_world/rev_1634939032065262806.sql +++ b/data/sql/updates/db_world/2021_10_31_04.sql @@ -1,3 +1,19 @@ +-- DB update 2021_10_31_03 -> 2021_10_31_04 +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_31_03'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_10_31_03 2021_10_31_04 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1634939032065262806'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1634939032065262806'); -- *** Quest "Last rites" *** @@ -100,3 +116,13 @@ UPDATE `creature_addon` SET `emote`=20 WHERE `guid`=101355; DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId`=13 AND `SourceEntry`=46685; INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES (13, 1, 46685, 0, 0, 31, 0, 3, 26173, 0, 0, 0, 0, '', 'Spell Borean Tundra - Quest - Thassarian Flay (effect 0) will hit the potential target of the spell if target is unit Tanathal.'); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_10_31_04' WHERE sql_rev = '1634939032065262806'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`;