class CreateLicitacaoItensDaOrdemDeCompra < ActiveRecord::Migration[4.2]
  def change
    create_table :licitacao_itens_da_ordem_de_compra do |t|
      t.integer :ordem_de_compra_id
			t.integer :item_do_contrato_id
      t.decimal :quantidade

      t.timestamps null: false
    end
  end
end
