trabajo-afectivo/db/migrate/20201028095957_issue_3215_rename_existing_office365.rb

15 lines
521 B
Ruby
Raw Normal View History

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