chore(DB): import pending files

Referenced commit(s): db79c33064
This commit is contained in:
github-actions[bot]
2024-08-28 18:21:15 +00:00
parent db79c33064
commit c8c7362a1e

View File

@@ -0,0 +1,11 @@
-- DB update 2024_08_28_03 -> 2024_08_28_04
-- Removes creature reference to broadcast text
/*
https://www.azerothcore.org/wiki states that broadcast text table contains only confirmed retail data.
So to avoid polluting the table issue #19480 is being fixed in creature_text table instead.
More info in issue #19480 and PR #19542
*/
UPDATE `creature_text` SET
`BroadcastTextId` = 0,
`comment` = CONCAT(`comment`, ', removed BroadcastTextId 12690 (more info in PR#19542)')
WHERE `CreatureID` IN (16325, 16326);