Sha256: 641185cc0d2a374a9e899405984d91748277ec9fc0dbf7f7d4d68e4f9d33edcb

Contents?: true

Size: 353 Bytes

Versions: 3

Compression:

Stored size: 353 Bytes

Contents

class CreateCustomers < ActiveRecord::Migration
  def change
    create_table :customers do |t|
      t.string :firstname
      t.string :lastname
      t.string :email
      t.string :phone
      t.string :mobile
      t.string :address_1
      t.string :city
      t.string :state
      t.string :zip

      t.timestamps null: false
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
qbo_rails-1.0.2 spec/dummy/db/migrate/20150319132650_create_customers.rb
qbo_rails-1.0.1 spec/dummy/db/migrate/20150319132650_create_customers.rb
qbo_rails-1.0.0 spec/dummy/db/migrate/20150319132650_create_customers.rb