From 0b0f320908275e52c2f8eb0c5f2ee99718cd40f2 Mon Sep 17 00:00:00 2001 From: Rene Krenn Date: Thu, 2 Aug 2018 10:29:07 +0200 Subject: [PATCH] TT#42261 prepaid_library col for billing_profiles Change-Id: I68aeda378d78931cadc5d50b70d5aa8c2e89c55f --- lib/NGCP/Schema/Result/billing_profiles.pm | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/NGCP/Schema/Result/billing_profiles.pm b/lib/NGCP/Schema/Result/billing_profiles.pm index 9588d96f..e419d7e8 100644 --- a/lib/NGCP/Schema/Result/billing_profiles.pm +++ b/lib/NGCP/Schema/Result/billing_profiles.pm @@ -33,6 +33,13 @@ __PACKAGE__->add_columns( { data_type => "varchar", is_nullable => 0, size => 31 }, "prepaid", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "prepaid_library", + { + data_type => "enum", + default_value => "libswrate", + extra => { list => ["libswrate", "libinewrate"] }, + is_nullable => 0, + }, "advice_of_charge", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "interval_charge",