diff --git a/db/seeds.rb b/db/seeds.rb index 0cb203576..9a1f1f8bb 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -1027,6 +1027,28 @@ Setting.create_if_not_exists( :state => false, :frontend => true ) +Setting.create_if_not_exists( + :title => 'Ignore Escalation/SLA Information', + :name => 'import_igonre_sla', + :area => 'Import::Base', + :description => 'Ignore Escalation/SLA Information form import system.', + :options => { + :form => [ + { + :display => '', + :null => true, + :name => 'import_igonre_sla', + :tag => 'boolean', + :options => { + true => 'yes', + false => 'no', + }, + }, + ], + }, + :state => false, + :frontend => true +) Setting.create_if_not_exists( :title => 'Import Endpoint',