class AddAttachmentFileToAnexoDaFiscalizacao < ActiveRecord::Migration[4.2]
  def self.up
    change_table :obra_anexos_da_fiscalizacao do |t|
      t.attachment :file
    end
  end

  def self.down
    remove_attachment :obra_anexos_da_fiscalizacao, :file
  end
end
