Sha256: f19df9b670de7c69902887ee44f98e8312b06f22959197d456d211bb2ad6a8e2

Contents?: true

Size: 160 Bytes

Versions: 1

Compression:

Stored size: 160 Bytes

Contents

class AddCityToClient < ActiveRecord::Migration
  def up
    add_column :clients, :city, :string
  end

  def down
    remove_column :clients, :city
  end

end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
simple_search_filter-0.0.30 test/dummy/db/migrate/20150723230023_add_city_to_client.rb