Skip to content

Commit

Permalink
chore(DB): import pending SQL update file
Browse files Browse the repository at this point in the history
Referenced commit(s): 7741206
  • Loading branch information
AzerothCoreBot committed Jan 25, 2021
1 parent 7741206 commit 2d609e9
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
28 changes: 28 additions & 0 deletions data/sql/updates/db_world/2021_01_25_00.sql
@@ -0,0 +1,28 @@
-- DB update 2021_01_24_02 -> 2021_01_25_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_01_24_02';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2021_01_24_02 2021_01_25_00 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1611591801006649000'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--

INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1611591801006649000');

UPDATE `version` SET `db_version`='ACDB 335.3', `cache_id`=3;

--
-- END UPDATING QUERIES
--
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;
3 changes: 0 additions & 3 deletions data/sql/updates/pending_db_world/rev_1611591801006649000.sql

This file was deleted.

0 comments on commit 2d609e9

Please sign in to comment.