TT#13784 add stopper flag to peering rules

Change-Id: Ibbf70cb3f146f96e749fd97f5b173cfa6a65f170
changes/31/13631/1
Gerhard Jungwirth 8 years ago
parent 3c735d51a2
commit b61cd27024

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

Loading…
Cancel
Save