summaryrefslogtreecommitdiff
path: root/db/migrate/20130130185300_add_no_copy_headers.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20130130185300_add_no_copy_headers.rb')
-rw-r--r--db/migrate/20130130185300_add_no_copy_headers.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130130185300_add_no_copy_headers.rb b/db/migrate/20130130185300_add_no_copy_headers.rb
new file mode 100644
index 0000000..aa96653
--- /dev/null
+++ b/db/migrate/20130130185300_add_no_copy_headers.rb
@@ -0,0 +1,9 @@
+class AddNoCopyHeaders < ActiveRecord::Migration
+ def up
+ GsParameter.create(:entity => 'dialplan', :section => 'variables', :name => 'sip_copy_custom_headers', :value => 'false', :class_type => 'Boolean', :description => 'Controls passing SIP headers from one call leg to another.')
+ end
+
+ def down
+ GsParameter.where(:entity => 'dialplan', :section => 'variables', :name => 'sip_copy_custom_headers').destroy_all
+ end
+end