From bcf973042632c8c30875a301aae87b8e0466922d Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Wed, 28 Sep 2016 15:34:25 +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: I3a113a29baa0c1500e23016d05c8225024dcf295 (cherry picked from commit ebd20192e0ea371a178cab0257f6508f92d71a11) --- db_scripts/diff/15285.down | 3 +++ db_scripts/diff/15285.up | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 db_scripts/diff/15285.down create mode 100644 db_scripts/diff/15285.up diff --git a/db_scripts/diff/15285.down b/db_scripts/diff/15285.down new file mode 100644 index 00000000..6c0945f6 --- /dev/null +++ b/db_scripts/diff/15285.down @@ -0,0 +1,3 @@ +use billing; + +alter table ncos_levels drop column intra_pbx; diff --git a/db_scripts/diff/15285.up b/db_scripts/diff/15285.up new file mode 100644 index 00000000..daa4ed09 --- /dev/null +++ b/db_scripts/diff/15285.up @@ -0,0 +1,3 @@ +use billing; + +alter table ncos_levels add column intra_pbx tinyint(1) not null default 0 after local_ac;