Sha256: 164a10540d8f7e2f1a239c0e44c7b1e07a30813621e7648d4d6d10d9a930ae81
Contents?: true
Size: 425 Bytes
Versions: 44
Compression:
Stored size: 425 Bytes
Contents
class CreateSpreeStockTransfers < ActiveRecord::Migration[4.2] 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 null: false end add_index :spree_stock_transfers, :source_location_id add_index :spree_stock_transfers, :destination_location_id end end
Version data entries
44 entries across 44 versions & 1 rubygems