Skip to content

Instantly share code, notes, and snippets.

@ckozus
Created October 6, 2014 21:08
Show Gist options
  • Save ckozus/6edb941c672e59cf03b4 to your computer and use it in GitHub Desktop.
Save ckozus/6edb941c672e59cf03b4 to your computer and use it in GitHub Desktop.
namespace :maintenance do
namespace :questions do
task :clean_up => :environment do
Question.find_each do |question|
if question.authors.size == 0
question.picks.destroy_all
question.destroy
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment