forked from azerothcore/azerothcore-wotlk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
AzerothCoreBot
committed
Feb 17, 2019
1 parent
2742a2e
commit 1fc22a7
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
-- DB update 2019_02_16_01 -> 2019_02_17_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_02_16_01'; | ||
IF @COLEXISTS = 0 THEN LEAVE proc; END IF; | ||
START TRANSACTION; | ||
ALTER TABLE version_db_world CHANGE COLUMN 2019_02_16_01 2019_02_17_00 bit; | ||
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1550345259308644865'; IF OK <> 'FALSE' THEN LEAVE proc; END IF; | ||
-- | ||
-- START UPDATING QUERIES | ||
-- | ||
|
||
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1550345259308644865'); | ||
|
||
UPDATE `version` SET `db_version`='ACDB 335.2', `cache_id`=2; | ||
|
||
-- | ||
-- END UPDATING QUERIES | ||
-- | ||
COMMIT; | ||
END // | ||
DELIMITER ; | ||
CALL updateDb(); | ||
DROP PROCEDURE IF EXISTS `updateDb`; |
3 changes: 0 additions & 3 deletions
3
data/sql/updates/pending_db_world/rev_1550345259308644865.sql
This file was deleted.
Oops, something went wrong.