scinote-web/app/jobs/notification_cleanup_job.rb

8 lines
167 B
Ruby
Raw Normal View History

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