class AddArquivoDeContextoToOrcamento < ActiveRecord::Migration[4.2]
  def up
    add_attachment :orcamentos, :arquivo_de_contexto
  end

  def down
    remove_attachment :orcamentos, :arquivo_de_contexto
  end
end
