Skip to content

Instantly share code, notes, and snippets.

@fluxsaas
Created August 20, 2012 10:47
Show Gist options
  • Save fluxsaas/3403105 to your computer and use it in GitHub Desktop.
Save fluxsaas/3403105 to your computer and use it in GitHub Desktop.
delete account without user
Account.all.each do |account|
if account.users.count == 0
account.destroy
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment