2023-11-28 00:44:12 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class NotificationCleanupJob < ApplicationJob
|
|
|
|
def perform
|
2024-10-24 19:22:21 +08:00
|
|
|
NewRelic::Agent.ignore_transaction
|
2023-11-28 00:44:12 +08:00
|
|
|
Notification.where('created_at < ?', 3.months.ago).delete_all
|
|
|
|
end
|
|
|
|
end
|