class CreateLicitacaoItensDoLoteDoPedido < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_itens_do_lote_do_pedido do |t|
      t.integer :lote_do_pedido_id
      t.integer :item_do_pedido_id
      t.integer :ordem

      t.timestamps
    end
  end
end
