chore(DB): import pending files

Referenced commit(s): 79d4efd1b4
This commit is contained in:
AzerothCoreBot
2022-01-27 21:44:42 +00:00
parent 79d4efd1b4
commit 9726bf2407
2 changed files with 33 additions and 7 deletions

View File

@@ -0,0 +1,33 @@
-- DB update 2022_01_27_04 -> 2022_01_27_05
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 = '2022_01_27_04';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_01_27_04 2022_01_27_05 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1642523191674512900'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1642523191674512900');
DELETE FROM `creature_formations` WHERE `memberGUID` IN (42921, 44397, 44396);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
(42921, 42921, 0, 0, 3),
(42921, 44397, 0, 0, 3),
(42921, 44396, 0, 0, 3);
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_01_27_05' WHERE sql_rev = '1642523191674512900';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,7 +0,0 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1642523191674512900');
DELETE FROM `creature_formations` WHERE `memberGUID` IN (42921, 44397, 44396);
INSERT INTO `creature_formations` (`leaderGUID`, `memberGUID`, `dist`, `angle`, `groupAI`) VALUES
(42921, 42921, 0, 0, 3),
(42921, 44397, 0, 0, 3),
(42921, 44396, 0, 0, 3);