Sha256: 8bfcf7084d51a71e510b21f76361606a291dd81f7680a65f6191f77d1f67348c

Contents?: true

Size: 701 Bytes

Versions: 17

Compression:

Stored size: 701 Bytes

Contents

class CreateAddresses < ActiveRecord::Migration
  def change
    create_table :addresses do |t|
      t.string :type
      t.belongs_to :order
      t.string :first_name,         null: false
      t.string :last_name
      t.string :company
      t.string :address1,           null: false
      t.string :address2
      t.string :city,               null: false
      t.string :zipcode
      t.string :country_name,       null: false
      t.string :country_code,       null: false
      t.string :state_name,         null: false
      t.string :state_code
      t.string :phone
      t.string :fax
      t.boolean :use_for_billing,    null: false, default: true

      t.timestamps
    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
nimbleshop_core-0.0.10 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.9 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.8 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.7 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.5 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.4.beta1 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.4 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.3 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.2 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.2.beta1 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc6 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc5 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc4 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc3 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc2 db/migrate/20111109190754_create_addresses.rb
nimbleshop_core-0.0.1.rc1 db/migrate/20111109190754_create_addresses.rb