From 309633e526abaf9ccbe33e4f99d8a82968cad2d7 Mon Sep 17 00:00:00 2001 From: AzerothCoreBot Date: Sat, 4 Dec 2021 09:00:11 +0000 Subject: [PATCH] chore(DB): import pending files Referenced commit(s): c21d83b30a5f01551ce346630fbd67a06c922983 --- data/sql/updates/db_world/2021_12_04_00.sql | 36 +++++++++++++++++++ .../rev_1635830311358655196.sql | 10 ------ 2 files changed, 36 insertions(+), 10 deletions(-) create mode 100644 data/sql/updates/db_world/2021_12_04_00.sql delete mode 100644 data/sql/updates/pending_db_world/rev_1635830311358655196.sql diff --git a/data/sql/updates/db_world/2021_12_04_00.sql b/data/sql/updates/db_world/2021_12_04_00.sql new file mode 100644 index 000000000..05fa98682 --- /dev/null +++ b/data/sql/updates/db_world/2021_12_04_00.sql @@ -0,0 +1,36 @@ +-- DB update 2021_12_03_06 -> 2021_12_04_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_03_06'; +IF @COLEXISTS = 0 THEN LEAVE proc; END IF; +START TRANSACTION; +ALTER TABLE version_db_world CHANGE COLUMN 2021_12_03_06 2021_12_04_00 bit; +SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1635830311358655196'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; +-- +-- START UPDATING QUERIES +-- + +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635830311358655196'); + +DELETE FROM `command` WHERE `name` IN ('teleport name npc id','teleport name npc guid','teleport name npc name'); +INSERT INTO `command` (`name`,`security`,`help`) VALUES +('teleport name npc id',2,'Syntax: .teleport name id #playername #creatureId +Teleport the given character to first found creature with id #creatureId. Character can be offline.'), +('teleport name npc guid',2,'Syntax: .teleport name id #playername #creatureSpawnId +Teleport the given character to creature with spawn id #creatureSpawnId. Character can be offline.'), +('teleport name npc name',2,'Syntax: .teleport name id #playername #creatureName +Teleport the given character to first found creature with name (must match exactly) #creatureName. Character can be offline.'); + +-- +-- END UPDATING QUERIES +-- +UPDATE version_db_world SET date = '2021_12_04_00' WHERE sql_rev = '1635830311358655196'; +COMMIT; +END // +DELIMITER ; +CALL updateDb(); +DROP PROCEDURE IF EXISTS `updateDb`; diff --git a/data/sql/updates/pending_db_world/rev_1635830311358655196.sql b/data/sql/updates/pending_db_world/rev_1635830311358655196.sql deleted file mode 100644 index b9596861f..000000000 --- a/data/sql/updates/pending_db_world/rev_1635830311358655196.sql +++ /dev/null @@ -1,10 +0,0 @@ -INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635830311358655196'); - -DELETE FROM `command` WHERE `name` IN ('teleport name npc id','teleport name npc guid','teleport name npc name'); -INSERT INTO `command` (`name`,`security`,`help`) VALUES -('teleport name npc id',2,'Syntax: .teleport name id #playername #creatureId -Teleport the given character to first found creature with id #creatureId. Character can be offline.'), -('teleport name npc guid',2,'Syntax: .teleport name id #playername #creatureSpawnId -Teleport the given character to creature with spawn id #creatureSpawnId. Character can be offline.'), -('teleport name npc name',2,'Syntax: .teleport name id #playername #creatureName -Teleport the given character to first found creature with name (must match exactly) #creatureName. Character can be offline.');