trabajo-afectivo/db/migrate/20170714000003_cleanup_cti_log.rb

19 lines
372 B
Ruby
Raw Normal View History

class CleanupCtiLog < ActiveRecord::Migration
def up
# return if it's a new setup
return if !Setting.find_by(name: 'system_init_done')
Scheduler.create_if_not_exists(
name: 'Cleanup Cti::Log',
method: 'Cti::Log.cleanup',
period: 1.month,
prio: 2,
active: true,
updated_by_id: 1,
created_by_id: 1,
)
end
end