chore(DB): import pending files

Referenced commit(s): 4db3dc629b
This commit is contained in:
AzerothCoreBot
2021-11-09 09:52:29 +00:00
parent 4db3dc629b
commit f77b1c98b5
2 changed files with 31 additions and 5 deletions

View File

@@ -0,0 +1,31 @@
-- DB update 2021_11_09_00 -> 2021_11_09_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 = '2021_11_09_00';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2021_11_09_00 2021_11_09_01 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1636427747651853200'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1636427747651853200');
DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` = 17 AND `SourceEntry` = 15958;
INSERT INTO `conditions`(`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `SourceId`, `ElseGroup`, `ConditionTypeOrReference`, `ConditionTarget`, `ConditionValue1`, `ConditionValue2`, `ConditionValue3`, `NegativeCondition`, `ErrorType`, `ErrorTextId`, `ScriptName`, `Comment`) VALUES
(17, 0, 15958, 0, 0, 30, 0, 175124, 5, 0, 0, 0, 0, '', 'Collect Rookery Egg require near GO Rookery Egg');
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2021_11_09_01' WHERE sql_rev = '1636427747651853200';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;