Sha256: e8dabbbfe88f8e08fe7b7103a5c062bbf0739e7b6b52dd560a81f58874c02f3e

Contents?: true

Size: 817 Bytes

Versions: 17

Compression:

Stored size: 817 Bytes

Contents

class CreateOrders < ActiveRecord::Migration
  def change
    create_table :orders do |t|
      t.string     :number,             null: false
      t.belongs_to :shipping_method,    null: true
      t.belongs_to :payment_method,     null: true
      t.string     :email,              null: true
      t.string     :status,             null: false, default: 'open'
      t.string     :payment_status,     null: false, default: 'abandoned'
      t.string     :shipping_status,    null: false, default: 'nothing_to_ship'
      t.string     :checkout_status,    null: false, default: 'items_added_to_cart'
      t.datetime   :shipped_at,         null: true
      t.datetime   :purchased_at,       null: true
      t.text       :metadata

      t.timestamps
    end
    add_index :orders, :number, unique: true
  end

end

Version data entries

17 entries across 17 versions & 1 rubygems

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