scinote-web/app/jobs/notification_cleanup_job.rb

10 lines
186 B
Ruby
Raw Normal View History

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