Sha256: 622d964b7507c22adbf32b550e516b15191f6797cbee99524879de0080bd7746
Contents?: true
Size: 424 Bytes
Versions: 21
Compression:
Stored size: 424 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: true end add_index :spree_stock_transfers, :source_location_id add_index :spree_stock_transfers, :destination_location_id end end
Version data entries
21 entries across 21 versions & 1 rubygems