Import pending SQL update file...

Referenced commit(s): 1ab080d5ac
This commit is contained in:
AzerothCoreBot
2019-10-24 06:21:03 +00:00
parent 1ab080d5ac
commit 9f593eb64e
2 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,31 @@
-- DB update 2019_10_23_00 -> 2019_10_24_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 = '2019_10_23_00';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2019_10_23_00 2019_10_24_00 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1570979437296560126'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1570979437296560126');
DELETE FROM `creature_loot_template` WHERE (`Entry` = 10440) AND (`Item` IN (13340));
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(10440, 13340, 0, 8.7, 0, 1, 0, 1, 1, '');
--
-- END UPDATING QUERIES
--
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;

View File

@@ -1,6 +0,0 @@
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1570979437296560126');
DELETE FROM `creature_loot_template` WHERE (`Entry` = 10440) AND (`Item` IN (13340));
INSERT INTO `creature_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
(10440, 13340, 0, 8.7, 0, 1, 0, 1, 1, '');