Skip to content

Instantly share code, notes, and snippets.

@paaloeye
Created October 10, 2012 10:08
Show Gist options
  • Save paaloeye/3864530 to your computer and use it in GitHub Desktop.
Save paaloeye/3864530 to your computer and use it in GitHub Desktop.
Clean up database
ActiveRecord::Base.descendants.reject { |el| [User,Page].include?(el) }.each { |el| el.destroy_all("id > 10") }.map { |el| [el.count,el] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment