Sha256: cea5fdbc56fd7db1b9151f1126a498c54f853029d9d96d39d18d51ebe8df50eb
Contents?: true
Size: 439 Bytes
Versions: 76
Compression:
Stored size: 439 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, precision: 6 end add_index :spree_stock_transfers, :source_location_id add_index :spree_stock_transfers, :destination_location_id end end
Version data entries
76 entries across 76 versions & 1 rubygems