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");