From b9d5698fc5693eca6cf824f82d3c110aa8b3a1ec Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sat, 28 Nov 2020 14:23:48 +0000 Subject: [PATCH] chore(DB): import pending SQL update file Referenced commit(s): d4612c7ac6cbb80f972c1a46c29a088e44ef2c08 --- data/sql/updates/db_world/2020_11_28_00.sql | 29 +++++++++++++++++++ .../rev_1605203808017925200.sql | 4 --- 2 files changed, 29 insertions(+), 4 deletions(-) create mode 100644 data/sql/updates/db_world/2020_11_28_00.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1605203808017925200.sql diff --git a/data/sql/updates/db_world/2020_11_28_00.sql b/data/sql/updates/db_world/2020_11_28_00.sql new file mode 100644 index 000000000..b21d9f648 --- /dev/null +++ b/data/sql/updates/db_world/2020_11_28_00.sql @@ -0,0 +1,29 @@ +-- DB update 2020_11_27_00 -> 2020_11_28_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 = '2020_11_27_00'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2020_11_27_00 2020_11_28_00 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1605203808017925200'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1605203808017925200'); +UPDATE `creature_text` SET `Text`='This is our final stand. What happens here will echo through the ages. Regardless of outcome, they will know that we fought with honor. That we fought for the freedom and safety of our people!' WHERE `CreatureID`=37119 AND `GroupID`=0 AND `ID`=0; +UPDATE `broadcast_text` SET `MaleText`='This is our final stand. What happens here will echo through the ages. Regardless of outcome, they will know that we fought with honor. That we fought for the freedom and safety of our people!' WHERE `ID`=36923; + + +-- +-- END UPDATING QUERIES +-- +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1605203808017925200.sql b/data/sql/updates/pending_db_world/rev_1605203808017925200.sql deleted file mode 100644 index 7c5f022a9..000000000 --- a/data/sql/updates/pending_db_world/rev_1605203808017925200.sql +++ /dev/null @@ -1,4 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1605203808017925200'); -UPDATE `creature_text` SET `Text`='This is our final stand. What happens here will echo through the ages. Regardless of outcome, they will know that we fought with honor. That we fought for the freedom and safety of our people!' WHERE `CreatureID`=37119 AND `GroupID`=0 AND `ID`=0; -UPDATE `broadcast_text` SET `MaleText`='This is our final stand. What happens here will echo through the ages. Regardless of outcome, they will know that we fought with honor. That we fought for the freedom and safety of our people!' WHERE `ID`=36923; -