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