2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-07-12 13:18:31 +00:00
|
|
|
|
|
|
|
class InclusiveWording < ActiveRecord::Migration[6.0]
|
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
|
|
|
|
2021-09-14 07:46:08 +00:00
|
|
|
rename_column :chats, :whitelisted_websites, :allowed_websites
|
2021-07-12 13:18:31 +00:00
|
|
|
Chat.reset_column_information
|
|
|
|
end
|
|
|
|
end
|