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; -