Fixes #3215 - Migrate existing Office365 Channel and ExternalSync to new Microsoft365 name.

This commit is contained in:
Thorsten Eckel 2020-10-28 11:04:45 +01:00
parent a07e587586
commit a9984adbc5

View file

@ -0,0 +1,14 @@
class Issue3215RenameExistingOffice365 < ActiveRecord::Migration[5.2]
def change
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
# migrate existing Channels and ExternalCredential to new name
# rubocop:disable Rails/SkipsModelValidations
Channel.where(area: 'Office365::Account').update_all(name: 'Microsoft365::Account')
ExternalCredential.where(name: 'office365').update_all(name: 'microsoft365')
# rubocop:enable Rails/SkipsModelValidations
end
end