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
changes/29/6429/1
Andreas Granig 9 years ago
parent e97c28029e
commit 3dae8a8810

@ -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");

Loading…
Cancel
Save