class CreateLicitacaoVistosDeDocumentosDoProcesso < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_vistos_de_documentos_do_processo do |t|
      t.integer :documento_do_processo_id
      t.boolean :aprovado
      t.text :justificativa

      t.timestamps
    end
  end
end
