Sha256: abf1e2925f6fb1cb251f78ca54932cee7bd2b6e76f289e0680e9b5bb2eb6837a

Contents?: true

Size: 529 Bytes

Versions: 3

Compression:

Stored size: 529 Bytes

Contents

class CreateSimpleCartAddress < ActiveRecord::Migration
  def change
    create_table "simple_cart_addresses", force: :cascade do |t|
      t.string   "address"
      t.string   "zipcode"
      t.string   "city"
      t.string   "phone"
      t.string   "country"
      t.datetime "created_at", null: false
      t.datetime "updated_at", null: false
      t.integer  "order_id"
      t.string   "firstname"
      t.string   "lastname"
      t.string   "type"
    end

    add_index "simple_cart_addresses", ["order_id"]
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple_cart-0.0.5 db/migrate/20160312142534_create_simple_cart_address.rb
simple_cart-0.0.4 db/migrate/20160312142534_create_simple_cart_address.rb
simple_cart-0.0.3 db/migrate/20160312142534_create_simple_cart_address.rb