chore(DB): Delete empty/null entries (#21058)
This commit is contained in:
parent
ca686d8798
commit
5dfe8973bb
1 changed files with 7 additions and 0 deletions
|
|
@ -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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue