Skip to content

Commit

Permalink
chore(DB): import pending files
Browse files Browse the repository at this point in the history
Referenced commit(s): 4b77dcd
  • Loading branch information
AzerothCoreBot committed Mar 2, 2022
1 parent 4b77dcd commit 6e8f113
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
29 changes: 29 additions & 0 deletions data/sql/updates/db_world/2022_03_02_05.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
-- DB update 2022_03_02_04 -> 2022_03_02_05
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 = '2022_03_02_04';
IF @COLEXISTS = 0 THEN LEAVE proc; END IF;
START TRANSACTION;
ALTER TABLE version_db_world CHANGE COLUMN 2022_03_02_04 2022_03_02_05 bit;
SELECT sql_rev INTO OK FROM version_db_world WHERE sql_rev = '1645984331813574600'; IF OK <> 'FALSE' THEN LEAVE proc; END IF;
--
-- START UPDATING QUERIES
--

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

UPDATE `creature` SET `position_x`=-7483.79, `position_y`=-1015.99, `position_z`=408.652, `orientation`=4.69494 WHERE `id1`=13020;

--
-- END UPDATING QUERIES
--
UPDATE version_db_world SET date = '2022_03_02_05' WHERE sql_rev = '1645984331813574600';
COMMIT;
END //
DELIMITER ;
CALL updateDb();
DROP PROCEDURE IF EXISTS `updateDb`;
3 changes: 0 additions & 3 deletions data/sql/updates/pending_db_world/rev_1645984331813574600.sql

This file was deleted.

0 comments on commit 6e8f113

Please sign in to comment.