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

18 lines
468 B
Ruby
Raw Normal View History

2017-04-18 07:38:53 +00:00
class ValidateAgentLimit < ActiveRecord::Migration
def up
# return if it's a new setup
return if !Setting.find_by(name: 'system_init_done')
Setting.create_if_not_exists(
title: 'Set limit of agents',
name: 'system_agent_limit',
area: 'Core::Online',
description: 'Defines the limit of the agents.',
options: {},
state: false,
preferences: { online_service_disable: true },
frontend: false
)
end
end