2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2021-05-12 10:31:00 +00:00
|
|
|
class Issue3550SetPretty < ActiveRecord::Migration[5.2]
|
|
|
|
def change
|
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
|
|
|
|
Cti::Log.order(created_at: :desc).limit(300).find_each do |log|
|
|
|
|
log.set_pretty
|
|
|
|
log.save!
|
|
|
|
rescue
|
|
|
|
Rails.logger.error "Issue3550SetPretty: Failed to migrate id #{log.id} with from '#{log.from}' and to '#{log.to}'"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|