From a31105145fe195f19a0097f236fdfad3bc2e4977 Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sat, 1 Jan 2022 23:20:14 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): 8216318f922f2c3caf17ff9ff3b574ef599bdd7e --- data/sql/updates/db_world/2022_01_01_00.sql | 31 +++++++++++++++++++ .../rev_1640860713284766500.sql | 5 --- 2 files changed, 31 insertions(+), 5 deletions(-) create mode 100644 data/sql/updates/db_world/2022_01_01_00.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1640860713284766500.sql diff --git a/data/sql/updates/db_world/2022_01_01_00.sql b/data/sql/updates/db_world/2022_01_01_00.sql new file mode 100644 index 000000000..cfc33388a --- /dev/null +++ b/data/sql/updates/db_world/2022_01_01_00.sql @@ -0,0 +1,31 @@ +-- DB update 2021_12_31_08 -> 2022_01_01_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_12_31_08'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_12_31_08 2022_01_01_00 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1640860713284766500'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1640860713284766500'); + +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 29 AND `SourceEntry` = 12101; +INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES +(29, 0, 12101, 0, 0, 13, 0, 2, 3, 3, 1, 0, 0, '', 'Lava Surger only spawn if boss state 3 (Garr) is not DONE.'); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2022_01_01_00' WHERE sql_rev = '1640860713284766500'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1640860713284766500.sql b/data/sql/updates/pending_db_world/rev_1640860713284766500.sql deleted file mode 100644 index 21b10af30..000000000 --- a/data/sql/updates/pending_db_world/rev_1640860713284766500.sql +++ /dev/null @@ -1,5 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1640860713284766500'); - -DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 29 AND `SourceEntry` = 12101; -INSERT INTO `conditions` (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES -(29, 0, 12101, 0, 0, 13, 0, 2, 3, 3, 1, 0, 0, '', 'Lava Surger only spawn if boss state 3 (Garr) is not DONE.');