MT#59449 add ban_increment_stage column

* to billing.admins and provisioning.voip_subscribers.

Change-Id: I477243a47666c5aacd9b204127d2b58218f6b5e2
mr13.0.1
Kirill Solomko 9 months ago
parent 72e808a59a
commit b88c4f8a3f

@ -83,6 +83,13 @@ __PACKAGE__->add_columns(
default_value => \"current_timestamp",
is_nullable => 0,
},
"ban_increment_stage",
{
data_type => "integer",
extra => { unsigned => 1 },
default_value => 0,
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("id");
@ -241,6 +248,13 @@ This module is a schema class for the NGCP database table "billing.admins".
default_value: current_timestamp
is_nullable: 0
=head2 ban_increment_stage
data_type: 'integer'
extra: {unsigned => 1}
default_value: 0
is_nullable: 1
=head1 PRIMARY KEY
=over 4

@ -99,6 +99,13 @@ __PACKAGE__->add_columns(
default_value => \"current_timestamp",
is_nullable => 0,
},
"ban_increment_stage",
{
data_type => "integer",
extra => { unsigned => 1 },
default_value => 0,
is_nullable => 0,
},
);
__PACKAGE__->set_primary_key("id");
@ -524,6 +531,13 @@ This module is a schema class for the NGCP database table "provisioning.voip_sub
default_value: current_timestamp
is_nullable: 0
=head2 ban_increment_stage
data_type: 'integer'
extra: {unsigned => 1}
default_value: 0
is_nullable: 0
=head1 PRIMARY KEY
=over 4

Loading…
Cancel
Save