trabajo-afectivo/db/migrate/20210701131549_issue_3579_new_scheduler.rb

19 lines
538 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
class Issue3579NewScheduler < ActiveRecord::Migration[6.0]
def change
return if !Setting.exists?(name: 'system_init_done')
Scheduler.create_if_not_exists(
name: 'Delete old upload cache entries.',
method: 'UploadCacheCleanupJob.perform_now',
period: 1.month,
prio: 2,
active: true,
updated_by_id: 1,
created_by_id: 1,
last_run: Time.zone.now,
)
end
end