class AddIdentificadorToLicitacaoItemDoLote < ActiveRecord::Migration[4.2]
  def change
    add_column :licitacao_itens_do_lote, :identificador, :integer
    Licitacao::ItemDoLote.all.each do |item_do_lote|
      item_do_lote.identificador = rand(10000000..99999999)
      item_do_lote.save(validate: false)
    end
  end
end
