trabajo-afectivo/db/migrate/20220405133444_issue4049_fix_object_lookup.rb

11 lines
338 B
Ruby
Raw Normal View History

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Issue4049FixObjectLookup < ActiveRecord::Migration[6.0]
def change
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
ObjectLookup.find_by(name: 'SmimeCertificate')&.update(name: 'SMIMECertificate')
end
end