Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created January 24, 2014 21:06
Show Gist options
  • Save brentvatne/8606438 to your computer and use it in GitHub Desktop.
Save brentvatne/8606438 to your computer and use it in GitHub Desktop.
# Undo a migration regardless of whether or not its id exists in the migrations table
#
# filename eg: '20131118193730_create_people_table`
#
def unmigrate(filename)
require Rails.root.to_s + '/db/migrate/' + filename
migration_class = filename.gsub(/\d+_/, '').camelize.constantize
migration_class.down
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment