Sha256: 0f2c300f76797610c4419d5f5a57d0ba1e0aaa503efbcfec649675c7c3fc28eb

Contents?: true

Size: 276 Bytes

Versions: 6

Compression:

Stored size: 276 Bytes

Contents

class CreateOrders < ActiveRecord::Migration
  def change
    create_table :orders do |t|
      t.string :user_name
      t.string :user_phone
      t.string :user_email
      t.string :delivery_address
      t.float  :total, null: false

      t.timestamps
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
power_shop-0.2.4 db/migrate/20140828061402_create_orders.rb
power_shop-0.2.3 db/migrate/20140828061402_create_orders.rb
power_shop-0.2.2 db/migrate/20140828061402_create_orders.rb
power_shop-0.2.1 db/migrate/20140828061402_create_orders.rb
power_shop-0.2.0 db/migrate/20140828061402_create_orders.rb
power_shop-0.1.1 db/migrate/20140828061402_create_orders.rb