class ActiveRecord::InvertibleMigrationTest::NonInvertibleMigration

Public Instance Methods

change() click to toggle source
# File activerecord/test/cases/invertible_migration_test.rb, line 57
def change
  create_table("horses") do |t|
    t.column :content, :text
    t.column :remind_at, :datetime
  end
  remove_column "horses", :content
end