Methods
U
Class Public methods
up()
# File activerecord/test/cases/invertible_migration_test.rb, line 62
def self.up
  create_table("horses") do |t|
    t.column :name, :string
    t.column :color, :string
    t.index [:name, :color]
  end
end