Sha256: 8b98b98b785f3dd6e6d2d617250e47cd20aab89199e3358daf410b73023cad2e
Contents?: true
Size: 470 Bytes
Versions: 11
Compression:
Stored size: 470 Bytes
Contents
# This migration comes from spree (originally 20130418125341) class CreateSpreeStockTransfers < ActiveRecord::Migration def change create_table :spree_stock_transfers do |t| t.string :type t.string :reference_number t.integer :source_location_id t.integer :destination_location_id t.timestamps end add_index :spree_stock_transfers, :source_location_id add_index :spree_stock_transfers, :destination_location_id end end
Version data entries
11 entries across 11 versions & 6 rubygems