trabajo-afectivo/db/migrate/20170418000001_validate_agent_limit.rb

20 lines
582 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
2017-09-08 08:28:34 +00:00
class ValidateAgentLimit < ActiveRecord::Migration[4.2]
2017-04-18 07:38:53 +00:00
def up
# return if it's a new setup
return if !Setting.exists?(name: 'system_init_done')
2017-04-18 07:38:53 +00:00
Setting.create_if_not_exists(
title: 'Set limit of agents',
name: 'system_agent_limit',
area: 'Core::Online',
2017-04-18 07:38:53 +00:00
description: 'Defines the limit of the agents.',
options: {},
state: false,
2017-04-18 07:38:53 +00:00
preferences: { online_service_disable: true },
frontend: false
2017-04-18 07:38:53 +00:00
)
end
end