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

17 lines
421 B
Ruby

# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
class SmsSupport < ActiveRecord::Migration[5.1]
def up
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
Permission.create_if_not_exists(
name: 'admin.channel_sms',
note: 'Manage %s',
preferences: {
translations: ['Channel - SMS']
},
)
end
end