From 438a62fcb055df2175aaadb2dfb447ed99e89fdc Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Sun, 23 Apr 2017 20:50:43 +0200 Subject: [PATCH] TT#12593 add voip_fax_preferences t38, ecm columns * add provisioning.voip_fax_preferences t38 column * add provisioning.voip_fax_preferences ecm column Change-Id: I7950b72ffb278a78a92ac909607ef2ba9611ca8a --- lib/NGCP/Schema/Result/voip_fax_preferences.pm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_fax_preferences.pm b/lib/NGCP/Schema/Result/voip_fax_preferences.pm index c37b3ad8..6aeabbb1 100644 --- a/lib/NGCP/Schema/Result/voip_fax_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_fax_preferences.pm @@ -33,6 +33,10 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 1, is_nullable => 0 }, "send_copy", { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + "t38", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + "ecm", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); @@ -120,6 +124,18 @@ NGCP::Schema::Result::voip_fax_preferences default_value: 1 is_nullable: 0 +=head2 t38 + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + +=head2 ecm + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =head1 PRIMARY KEY =over 4