mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 02:20:27 +00:00
36
data/sql/updates/db_world/2020_07_16_01.sql
Normal file
36
data/sql/updates/db_world/2020_07_16_01.sql
Normal file
@@ -0,0 +1,36 @@
|
||||
-- DB update 2020_07_16_00 -> 2020_07_16_01
|
||||
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_07_16_00';
|
||||
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
|
||||
START TRANSACTION;
|
||||
ALTER TABLE version_db_world CHANGE COLUMN 2020_07_16_00 2020_07_16_01 bit;
|
||||
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1590721141473009089'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
|
||||
--
|
||||
-- START UPDATING QUERIES
|
||||
--
|
||||
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1590721141473009089');
|
||||
|
||||
/*delete any entries in creature_formations to make sure no errors*/
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = 79333;
|
||||
|
||||
/*add captain greenskin as leader of the formation and give him followers.*/
|
||||
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`) VALUES
|
||||
(79333,79333,0,0,0),
|
||||
(79333,79334,2,135,0),
|
||||
(79333,79335,2,225,0);
|
||||
|
||||
|
||||
--
|
||||
-- END UPDATING QUERIES
|
||||
--
|
||||
COMMIT;
|
||||
END //
|
||||
DELIMITER ;
|
||||
CALL updateDb();
|
||||
DROP PROCEDURE IF EXISTS `updateDb`;
|
||||
@@ -1,11 +0,0 @@
|
||||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1590721141473009089');
|
||||
|
||||
/*delete any entries in creature_formations to make sure no errors*/
|
||||
DELETE FROM `creature_formations` WHERE `leaderGUID` = 79333;
|
||||
|
||||
/*add captain greenskin as leader of the formation and give him followers.*/
|
||||
INSERT INTO `creature_formations` (`leaderGUID`,`memberGUID`,`dist`,`angle`,`groupAI`) VALUES
|
||||
(79333,79333,0,0,0),
|
||||
(79333,79334,2,135,0),
|
||||
(79333,79335,2,225,0);
|
||||
|
||||
Reference in New Issue
Block a user