class ActiveRecord::InvertibleMigrationTest::RemoveIndexMigration2
Public Instance Methods
change()
click to toggle source
# File activerecord/test/cases/invertible_migration_test.rb, line 77 def change change_table("horses") do |t| t.remove_index [:name, :color] end end