Sha256: 74b82f068159a9dadc29558de8ac7702830952c4021800420336d36c696d4556
Contents?: true
Size: 614 Bytes
Versions: 2
Compression:
Stored size: 614 Bytes
Contents
# This migration comes from spree (originally 20150305043021) class CreateSpreeCartons < ActiveRecord::Migration def change create_table "spree_cartons" do |t| t.string "number" t.string "external_number" t.references "stock_location", index: true t.references "address" t.references "shipping_method" t.string "tracking" t.datetime "shipped_at" t.timestamps null: true end add_index "spree_cartons", "number", unique: true add_index "spree_cartons", "external_number" add_column "spree_inventory_units", "carton_id", :integer end end
Version data entries
2 entries across 2 versions & 1 rubygems