chore(DB): import pending files

Referenced commit(s): ea1ffd6894
This commit is contained in:
AzerothCoreBot
2021-12-20 19:13:29 +00:00
parent ea1ffd6894
commit d5e7d732e4

View File

@@ -1,3 +1,19 @@
-- DB update 2021_12_19_05 -> 2021_12_20_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_19_05';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2021_12_19_05 2021_12_20_00 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1640021759359148700'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1640021759359148700');
DELETE FROM `command` WHERE `name` IN ('item refund');
@@ -14,3 +30,13 @@ INSERT INTO `acore_string` (`entry`, `content_default`) VALUES
(5076, 'An attempt of refunding your item %s has failed because it would put you over the arena points limit.'),
(5077, 'Item %s (%u) was refunded, restoring %u arena points.'),
(5078, 'Item not found in the character\'s inventory (bank included)');
--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2021_12_20_00' WHERE sql_rev = '1640021759359148700';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;