MT#63454 Add new time_set_invert column to billing.ncos_levels

The new column store a value 0 or 1 to define wether the
ncos is applied when the time_set matches or not.

Change-Id: Ibd8f95857022a296c16ba8426f8979c756663f57
master
Marco Capetta 1 month ago
parent 11b12bc251
commit ab85850644

@ -51,6 +51,8 @@ __PACKAGE__->add_columns(
}, },
"expose_to_customer", "expose_to_customer",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 }, { data_type => "tinyint", default_value => 0, is_nullable => 0 },
"time_set_invert",
{ data_type => "tinyint", default_value => 0, is_nullable => 0 },
); );
__PACKAGE__->set_primary_key("id"); __PACKAGE__->set_primary_key("id");
@ -180,6 +182,18 @@ This module is a schema class for the NGCP database table "billing.ncos_levels".
is_foreign_key: 1 is_foreign_key: 1
is_nullable: 1 is_nullable: 1
=head2 expose_to_customer
data_type: 'tinyint'
default_value: 0
is_nullable: 0
=head2 time_set_invert
data_type: 'tinyint'
default_value: 0
is_nullable: 0
=head1 PRIMARY KEY =head1 PRIMARY KEY
=over 4 =over 4

Loading…
Cancel
Save