forked from vmangos/core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'development' of https://github.com/vmangos/core into de…
…velopment # Conflicts: # src/game/Movement/RandomMovementGenerator.h # src/game/World.h # src/game/WorldSession.cpp
- Loading branch information
Showing
214 changed files
with
32,960 additions
and
3,623 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
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
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
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
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
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
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,30 @@ | ||
DROP PROCEDURE IF EXISTS add_migration; | ||
delimiter ?? | ||
CREATE PROCEDURE `add_migration`() | ||
BEGIN | ||
DECLARE v INT DEFAULT 1; | ||
SET v = (SELECT COUNT(*) FROM `migrations` WHERE `id`='20220820140339'); | ||
IF v=0 THEN | ||
INSERT INTO `migrations` VALUES ('20220820140339'); | ||
-- Add your query below. | ||
|
||
DELETE FROM `script_texts` WHERE `entry`= -1129005; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129006; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129007; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129008; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129009; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129010; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129011; | ||
DELETE FROM `script_texts` WHERE `entry`= -1129012; | ||
|
||
UPDATE `broadcast_text` SET `chat_type`=1 WHERE `entry`=4504; | ||
UPDATE `broadcast_text` SET `chat_type`=1 WHERE `entry`=4505; | ||
UPDATE `broadcast_text` SET `chat_type`=1 WHERE `entry`=4506; | ||
UPDATE `broadcast_text` SET `chat_type`=1 WHERE `entry`=4507; | ||
|
||
-- End of migration. | ||
END IF; | ||
END?? | ||
delimiter ; | ||
CALL add_migration(); | ||
DROP PROCEDURE IF EXISTS add_migration; |
Oops, something went wrong.