From b61cd27024bcce4ae87693621b915a41846dc726 Mon Sep 17 00:00:00 2001 From: Gerhard Jungwirth Date: Fri, 2 Jun 2017 13:36:50 +0200 Subject: [PATCH] TT#13784 add stopper flag to peering rules Change-Id: Ibbf70cb3f146f96e749fd97f5b173cfa6a65f170 --- lib/NGCP/Schema/Result/voip_peer_rules.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_peer_rules.pm b/lib/NGCP/Schema/Result/voip_peer_rules.pm index 1433f755..2b616f98 100644 --- a/lib/NGCP/Schema/Result/voip_peer_rules.pm +++ b/lib/NGCP/Schema/Result/voip_peer_rules.pm @@ -33,6 +33,8 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 0, size => 255 }, "enabled", { data_type => "tinyint", default_value => 1, is_nullable => 0 }, + "stopper", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); @@ -114,6 +116,18 @@ NGCP::Schema::Result::voip_peer_rules is_nullable: 0 size: 255 +=head2 enabled + + data_type: 'tinyint' + is_nullable: 0 + default_value: 1 + +=head2 stopper + + data_type: 'tinyint' + is_nullable: 0 + default_value: 0 + =head1 PRIMARY KEY =over 4