Sha256: 046d1eee9dba40a46d05fc2482f7af44f7b28a4826c443df0bbd42f1273da0d0

Contents?: true

Size: 445 Bytes

Versions: 1

Compression:

Stored size: 445 Bytes

Contents

class CreateFeAddresses < ActiveRecord::Migration
  def change
    create_table Fe::Address.table_name do |t|
      t.datetime :startdate
      t.datetime :enddate
      t.string :address1
      t.string :address2
      t.string :address3
      t.string :address4
      t.string :address_type
      t.string :city
      t.string :state
      t.string :zip
      t.string :country
      t.integer :person_id

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fe-1.0.0 db/migrate/20140624180246_create_fe_addresses.rb