From d22843385ed9367c86f1c84709e66644f32eedf5 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Fri, 26 Feb 2021 13:55:15 +0100 Subject: [PATCH] TT#111305 add "aoc_pulse_amount_per_message" column Change-Id: I7077e7684e2cc4cf531a93c65e566232582dfca9 --- lib/NGCP/Schema/Result/billing_fees.pm | 2 ++ lib/NGCP/Schema/Result/billing_fees_history.pm | 2 ++ lib/NGCP/Schema/Result/billing_fees_raw.pm | 2 ++ 3 files changed, 6 insertions(+) diff --git a/lib/NGCP/Schema/Result/billing_fees.pm b/lib/NGCP/Schema/Result/billing_fees.pm index cb145422..4a824da7 100644 --- a/lib/NGCP/Schema/Result/billing_fees.pm +++ b/lib/NGCP/Schema/Result/billing_fees.pm @@ -115,6 +115,8 @@ __PACKAGE__->add_columns( }, "offpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "aoc_pulse_amount_per_message", + { data_type => "double precision", 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 6b1db369..d8ec9ce5 100644 --- a/lib/NGCP/Schema/Result/billing_fees_history.pm +++ b/lib/NGCP/Schema/Result/billing_fees_history.pm @@ -117,6 +117,8 @@ __PACKAGE__->add_columns( }, "offpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "aoc_pulse_amount_per_message", + { data_type => "double precision", 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 5e0488d8..226be325 100644 --- a/lib/NGCP/Schema/Result/billing_fees_raw.pm +++ b/lib/NGCP/Schema/Result/billing_fees_raw.pm @@ -115,6 +115,8 @@ __PACKAGE__->add_columns( }, "offpeak_use_free_time", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "aoc_pulse_amount_per_message", + { data_type => "double precision", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");