appirits/comable

View on GitHub
core/db/migrate/20151012143215_create_comable_shipment_items.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateComableShipmentItems < ActiveRecord::Migration
  def change
    create_table :comable_shipment_items do |t|
      t.references :shipment, null: false
      t.references :stock, null: false
      t.timestamps null: false
    end

    add_index :comable_shipment_items, :shipment_id
  end
end