chore(DB): Delete empty/null entries (#21058)

This commit is contained in:
Kitzunu 2024-12-29 18:50:20 +01:00 committed by GitHub
parent ca686d8798
commit 5dfe8973bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,7 @@
--
DELETE FROM `gameobject_template_locale` WHERE `name` = '';
DELETE FROM `gameobject_template_locale` WHERE `name` = 'NULL';
DELETE FROM `gameobject_template_locale` WHERE `name` IS NULL;
DELETE FROM `quest_offer_reward_locale` WHERE `RewardText` = '';
DELETE FROM `quest_offer_reward_locale` WHERE `RewardText` = 'NULL';
DELETE FROM `quest_offer_reward_locale` WHERE `RewardText` IS NULL;