Skip to content

Instantly share code, notes, and snippets.

@kinopyo
Created September 7, 2012 11:14
Show Gist options
  • Save kinopyo/3665235 to your computer and use it in GitHub Desktop.
Save kinopyo/3665235 to your computer and use it in GitHub Desktop.
Rails irreversible drop table migration
class DropProductsTable < ActiveRecord::Migration
def up
drop_table :products
end
def down
raise ActiveRecord::IrreversibleMigration
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment