diff --git a/lib/data_update_scripts/20201218173445_remove_collective_noun_from_config.rb b/lib/data_update_scripts/20201218173445_remove_collective_noun_from_config.rb new file mode 100644 index 000000000..23736cee9 --- /dev/null +++ b/lib/data_update_scripts/20201218173445_remove_collective_noun_from_config.rb @@ -0,0 +1,7 @@ +module DataUpdateScripts + class RemoveCollectiveNounFromConfig + def run + SiteConfig.where(var: %w[collective_noun collective_noun_disabled]).destroy_all + end + end +end