From 9a24751ce08626137574c0922af1e246b98682ad Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 28 Sep 2016 15:34:42 +0200 Subject: [PATCH] TT#3991 Add ncos level flag for intra-pbx calls If set and a call is done within a pbx customer, the call is blocked in blacklist, and is allowed in whitelist. Change-Id: I8b5cb3f8ed73ce7df6871121568a32fae2b6c8c6 --- lib/NGCP/Schema/Result/ncos_levels.pm | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/lib/NGCP/Schema/Result/ncos_levels.pm b/lib/NGCP/Schema/Result/ncos_levels.pm index 5fe734ed..7b1765b0 100644 --- a/lib/NGCP/Schema/Result/ncos_levels.pm +++ b/lib/NGCP/Schema/Result/ncos_levels.pm @@ -34,6 +34,8 @@ __PACKAGE__->add_columns( }, "local_ac", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "intra_pbx", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "description", { data_type => "text", is_nullable => 1 }, ); @@ -131,6 +133,12 @@ NGCP::Schema::Result::ncos_levels default_value: 0 is_nullable: 0 +=head2 intra_pbx + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + =head2 description data_type: 'text'