class CreateLicitacaoArquivosBllDosProcessos < ActiveRecord::Migration[5.2]
  def change
    create_table :licitacao_arquivos_bll_dos_processos do |t|
      t.bigint :processo_id
      t.boolean :processado
      t.integer :tipo_de_arquivo
      t.attachment :file

      t.timestamps
    end
  end
end
