Sha256: 497a6bd63b7c1393983ce131136299d6976f5986dd9bf62096f503edfe7a6162

Contents?: true

Size: 271 Bytes

Versions: 1

Compression:

Stored size: 271 Bytes

Contents

class CreateNeighborhoods < ActiveRecord::Migration
  def change
    create_table :neighborhoods do |t|
      t.string :name
      t.references :city

      t.timestamps
    end
    add_index :neighborhoods, :city_id
    add_foreign_key :neighborhoods, :cities
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unico-training-7.8.0 db/migrate/20110602175632_create_neighborhoods.rb