From ab858506445b6b94e0c26b7266595c9c33b72972 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Fri, 22 Aug 2025 11:51:20 +0200 Subject: [PATCH] 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 --- lib/NGCP/Schema/Result/ncos_levels.pm | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/NGCP/Schema/Result/ncos_levels.pm b/lib/NGCP/Schema/Result/ncos_levels.pm index d023262f..67ce88f2 100644 --- a/lib/NGCP/Schema/Result/ncos_levels.pm +++ b/lib/NGCP/Schema/Result/ncos_levels.pm @@ -51,6 +51,8 @@ __PACKAGE__->add_columns( }, "expose_to_customer", { 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"); @@ -180,6 +182,18 @@ This module is a schema class for the NGCP database table "billing.ncos_levels". is_foreign_key: 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 =over 4