appirits/comable

View on GitHub
core/db/migrate/20150924111838_add_stock_location_id_to_comable_shipments.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddStockLocationIdToComableShipments < ActiveRecord::Migration
  def change
    change_table :comable_shipments do |t|
      t.references :stock_location
    end
  end
end