2021-06-01 12:20:20 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
2020-02-13 08:27:36 +00:00
|
|
|
class ChatAddAllowWebsite < ActiveRecord::Migration[5.1]
|
|
|
|
def up
|
|
|
|
|
|
|
|
# return if it's a new setup
|
2020-08-03 08:35:43 +00:00
|
|
|
return if !Setting.exists?(name: 'system_init_done')
|
2020-02-13 08:27:36 +00:00
|
|
|
|
2021-09-14 07:46:08 +00:00
|
|
|
add_column :chats, :whitelisted_websites, :string, limit: 5000, null: true
|
2020-02-13 08:27:36 +00:00
|
|
|
end
|
|
|
|
end
|