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
changes/99/8499/1
Andreas Granig 9 years ago
parent 4ed30d5ff7
commit 9a24751ce0

@ -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'

Loading…
Cancel
Save