From 3dae8a88106589b1d1eca42ac814f83966009005 Mon Sep 17 00:00:00 2001 From: Andreas Granig Date: Tue, 31 May 2016 13:12:23 +0200 Subject: [PATCH] MT#19457 Add lnp authoritative and skip_rewrite Authoritative is rejecting call with 404 if number is not assigned to local subscriber. Skip Rewrite is skipping lnp rewrite rules. Change-Id: I2a308f712712adcd1075b249ab704e47daca1007 --- lib/NGCP/Schema/Result/lnp_providers.pm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lib/NGCP/Schema/Result/lnp_providers.pm b/lib/NGCP/Schema/Result/lnp_providers.pm index 1dfdb04e..b38c060c 100644 --- a/lib/NGCP/Schema/Result/lnp_providers.pm +++ b/lib/NGCP/Schema/Result/lnp_providers.pm @@ -15,6 +15,10 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 1, size => 255 }, "prefix", { data_type => "varchar", is_nullable => 0, size => 32 }, + "authoritative", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "skip_rewrite", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");