docbrown/lib/data_update_scripts/20200818170523_remove_orphaned_polls.rb
2020-09-08 12:06:47 -04:00

13 lines
332 B
Ruby

module DataUpdateScripts
class RemoveOrphanedPolls
def run
# Delete all Polls belonging to Articles that don't exist anymore
ActiveRecord::Base.connection.execute(
<<~SQL.squish,
DELETE FROM polls
WHERE article_id NOT IN (SELECT id FROM articles);
SQL
)
end
end
end