scinote-web/app/jobs/notification_cleanup_job.rb

9 lines
206 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class NotificationCleanupJob < ApplicationJob
def perform
NewRelic::Agent.ignore_transaction
Notification.where('created_at < ?', 3.months.ago).delete_all
end
end