trabajo-afectivo/db/migrate/20210810091200_issue_3669_fix_domain.rb
2022-01-01 14:38:12 +01:00

12 lines
389 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class Issue3669FixDomain < ActiveRecord::Migration[6.0]
def change
return if !Setting.exists?(name: 'system_init_done')
Channel.where(area: ['Google::Account', 'Microsoft365::Account']).each do |channel|
channel.options[:outbound][:options].delete(:domain)
channel.save!
end
end
end