Skip to content

Commit

Permalink
chore(DB): Delete empty/null entries (#21058)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kitzunu authored Dec 29, 2024
1 parent ca686d8 commit 5dfe897
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions data/sql/updates/pending_db_world/rev_1735437140186286300.sql
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 5dfe897

Please sign in to comment.