15 lines
547 B
Ruby
15 lines
547 B
Ruby
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
class Issue3523NewOperator < ActiveRecord::Migration[5.2]
|
|
def change
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
overview = Overview.find_by(link: 'all_escalated')
|
|
return if !overview
|
|
return if overview.condition['ticket.escalation_at'].blank?
|
|
return if overview.condition['ticket.escalation_at'][:operator] != 'before (relative)'
|
|
|
|
overview.condition['ticket.escalation_at'][:operator] = 'till (relative)'
|
|
overview.save!
|
|
end
|
|
end
|