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