18 lines
534 B
Ruby
18 lines
534 B
Ruby
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class ActiveJobLockCleanupJobScheduler < ActiveRecord::Migration[5.2]
|
|
def up
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
Scheduler.create_or_update(
|
|
name: 'Cleanup ActiveJob locks.',
|
|
method: 'ActiveJobLockCleanupJob.perform_now',
|
|
period: 1.day,
|
|
last_run: Time.zone.now,
|
|
prio: 2,
|
|
active: true,
|
|
updated_by_id: 1,
|
|
created_by_id: 1,
|
|
)
|
|
end
|
|
end
|