Created
October 6, 2014 21:08
-
-
Save ckozus/6edb941c672e59cf03b4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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