From 73224ebb992ff22f5dabedfefc5bc511a0054a08 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Sun, 29 Dec 2019 16:01:49 +0100 Subject: [PATCH] TT#72900 fee onoffpeak usefreetime Change-Id: Ibb972028d527217698c0f9ce3f7d1dffcc706b89 --- lib/NGCP/Schema/Result/billing_fees.pm | 4 +++- lib/NGCP/Schema/Result/billing_fees_history.pm | 4 +++- lib/NGCP/Schema/Result/billing_fees_raw.pm | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/lib/NGCP/Schema/Result/billing_fees.pm b/lib/NGCP/Schema/Result/billing_fees.pm index 76bcf29f..cb145422 100644 --- a/lib/NGCP/Schema/Result/billing_fees.pm +++ b/lib/NGCP/Schema/Result/billing_fees.pm @@ -88,7 +88,7 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 0, }, - "use_free_time", + "onpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "match_mode", { @@ -113,6 +113,8 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 1, }, + "offpeak_use_free_time", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); diff --git a/lib/NGCP/Schema/Result/billing_fees_history.pm b/lib/NGCP/Schema/Result/billing_fees_history.pm index 11915122..6b1db369 100644 --- a/lib/NGCP/Schema/Result/billing_fees_history.pm +++ b/lib/NGCP/Schema/Result/billing_fees_history.pm @@ -90,7 +90,7 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 0, }, - "use_free_time", + "onpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "match_mode", { @@ -115,6 +115,8 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 1, }, + "offpeak_use_free_time", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id"); diff --git a/lib/NGCP/Schema/Result/billing_fees_raw.pm b/lib/NGCP/Schema/Result/billing_fees_raw.pm index cda438b0..5e0488d8 100644 --- a/lib/NGCP/Schema/Result/billing_fees_raw.pm +++ b/lib/NGCP/Schema/Result/billing_fees_raw.pm @@ -88,7 +88,7 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 0, }, - "use_free_time", + "onpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "match_mode", { @@ -113,6 +113,8 @@ __PACKAGE__->add_columns( extra => { unsigned => 1 }, is_nullable => 1, }, + "offpeak_use_free_time", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");