Sha256: 0fbd708140ff8ae02cab4c58b5c5339501e1d37481dd8732b36df16fd8a37e7b

Contents?: true

Size: 244 Bytes

Versions: 1

Compression:

Stored size: 244 Bytes

Contents

class RemoveCityIdFromStreet < ActiveRecord::Migration
  def up
    remove_column :streets, :city_id
  end

  def down
    add_column :streets, :city_id, :integer
    add_index :streets, :city_id
    add_foreign_key :streets, :cities
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unico-training-7.8.0 db/migrate/20110905192053_remove_city_id_from_street.rb