diff --git a/Changes b/Changes index 38f0f214..1c38182d 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,26 @@ Changes - Revision history for NGCP-Schema +=head2 2.007 2013-10-29 + +=over + +=item Add label column to voip_subscribers table. +=item Add relation from provisioning sub to billing sub. +=item MT#3977 Add schema to support PBX multiline config +=item MT#3977 Add PBX firmware version column. +=item MT#4025 Link contract and sound set tables. +=item MT#4225 remove nugatory modules to save memory +=item MT#4135 Only load certain Helper::ResultSet::* +=item MT#4145 Change contacts.postcode to varchar. +=item MT#4123 warning gone in newer version +=item MT#3997 Add via_route column to voip_peer_hosts. +=item MT#4007 Add voip_pbx_autoattendants schema. +=item MT#3971 Add max_subscribers column to contracts. +=item MT#4685 Don't tie firmware to profile. + +=back + =head2 2.006 2013-09-20 =over diff --git a/README b/README index f46ddb1c..1418e740 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ =encoding UTF-8 -NGCP-Schema version 2.006 +NGCP-Schema version 2.007 =head1 NAME diff --git a/debian/changelog b/debian/changelog index 14fe30b3..729a0109 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,35 @@ +ngcp-schema (2.007) unstable; urgency=low + + [ Andreas Granig ] + * [17229b3] Add label column to voip_subscribers table. + * [056ee6e] Deflate voicemail origtime column. + * [2d1ceac] Add relation from provisioning sub to billing sub. + * [f2430c7] MT#3977 Add schema to support PBX multiline config + * [3c8a66d] MT#3977 Fix wrong relationship name. + * [04e4447] MT#3977 Add PBX firmware version column. + * [fac4678] MT#4025 Link contract and sound set tables. + * [536250c] MT#4145 Change contacts.postcode to varchar. + * [aea75bc] MT#3997 Add via_route column to voip_peer_hosts. + * [d379e10] MT#4007 Add voip_pbx_autoattendants schema. + * [e312c53] MT#4007 Add destination to autoattendant. + * [75b9b92] MT#4007 Fix autoattendant relation for subscriber. + * [b5362d6] MT#4225 Align new schemas to optimized approach. + * [d3eee10] MT#3971 Add max_subscribers column to contracts. + * [7b86c0f] MT#4685 Don't tie firmware to profile. + + [ Gerhard Jungwirth ] + * [506817e] Only load Helper::ResultSet::SetOperations instead of all + * [37a15cd] MT#4135 Only load certain Helper::ResultSet::* + + [ Lars Dieckow ] + * [7325ac6] MT#4225 remove nugatory modules to save memory + * [95cdd13] MT#4123 warning gone in newer version + + [ Michael Prokop ] + * [2f4b037] MT#4419 Web server should be restarted on ngcp-schema package upgrades + + -- Andreas Granig Tue, 29 Oct 2013 11:52:43 +0100 + ngcp-schema (2.006) unstable; urgency=low * [73bd5d8] Add PBX autoprovisioning tables. diff --git a/lib/NGCP/Schema.pm b/lib/NGCP/Schema.pm index dea9f9d1..e15d683a 100644 --- a/lib/NGCP/Schema.pm +++ b/lib/NGCP/Schema.pm @@ -7,7 +7,7 @@ use Regexp::IPv6 qw($IPv6_re); use MooseX::ClassAttribute qw(class_has); extends 'DBIx::Class::Schema'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_namespaces( default_resultset_class => 'ResultSet', @@ -93,7 +93,7 @@ NGCP::Schema - DBIC-derived ORM schema classes =head1 VERSION -This document describes NGCP::Schema version 2.006 +This document describes NGCP::Schema version 2.007 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Config.pm b/lib/NGCP/Schema/Config.pm index 666c0301..8d21937a 100644 --- a/lib/NGCP/Schema/Config.pm +++ b/lib/NGCP/Schema/Config.pm @@ -5,7 +5,7 @@ use MooseX::FileAttribute qw(has_file); use MooseX::Singleton qw(has); use XML::Simple qw(); -our $VERSION = '2.006'; +our $VERSION = '2.007'; has_file('config_file', is => 'rw', required => 1, default => '/etc/ngcp-ossbss/provisioning.conf'); has('as_hash', isa => 'HashRef', is => 'rw', lazy => 1, default => method { @@ -53,7 +53,7 @@ NGCP::Schema::Config - configuration class =head1 VERSION -This document describes NGCP::Schema::Config version 2.006 +This document describes NGCP::Schema::Config version 2.007 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Exception.pm b/lib/NGCP/Schema/Exception.pm index ecbb3464..ea406f35 100644 --- a/lib/NGCP/Schema/Exception.pm +++ b/lib/NGCP/Schema/Exception.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Exception; use Sipwise::Base; use namespace::sweep; -our $VERSION = '2.006'; +our $VERSION = '2.007'; extends 'Throwable::Error'; has('description', is => 'ro', isa => 'Str', required => 1); @@ -20,7 +20,7 @@ NGCP::Schema::Exception - exceptions that work like ossbss mydie =head1 VERSION -This document describes NGCP::Schema::Exception version 2.006 +This document describes NGCP::Schema::Exception version 2.007 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm index 69ee6411..9ebf52ee 100644 --- a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm +++ b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm @@ -4,7 +4,7 @@ use DateTime qw(); extends 'DBIx::Class'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components(qw(InflateColumn::DateTime)); diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm index c588214c..7d8e530f 100644 --- a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm +++ b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm @@ -4,7 +4,7 @@ use DateTime qw(); extends 'DBIx::Class'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components(qw(InflateColumn::DateTime)); diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochString.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochString.pm index dbc39736..f7007b06 100644 --- a/lib/NGCP/Schema/InflateColumn/DateTime/EpochString.pm +++ b/lib/NGCP/Schema/InflateColumn/DateTime/EpochString.pm @@ -4,7 +4,7 @@ use DateTime qw(); extends 'DBIx::Class'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components( qw( InflateColumn::DateTime ) ); diff --git a/lib/NGCP/Schema/Result/acc.pm b/lib/NGCP/Schema/Result/acc.pm index 9db513aa..fc4795e2 100644 --- a/lib/NGCP/Schema/Result/acc.pm +++ b/lib/NGCP/Schema/Result/acc.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::acc; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/acc_backup.pm b/lib/NGCP/Schema/Result/acc_backup.pm index 6a2d347e..15401519 100644 --- a/lib/NGCP/Schema/Result/acc_backup.pm +++ b/lib/NGCP/Schema/Result/acc_backup.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::acc_backup; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/acc_trash.pm b/lib/NGCP/Schema/Result/acc_trash.pm index 5e3efa56..6d01bbc8 100644 --- a/lib/NGCP/Schema/Result/acc_trash.pm +++ b/lib/NGCP/Schema/Result/acc_trash.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::acc_trash; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/active_watchers.pm b/lib/NGCP/Schema/Result/active_watchers.pm index 4e9584aa..a2af2900 100644 --- a/lib/NGCP/Schema/Result/active_watchers.pm +++ b/lib/NGCP/Schema/Result/active_watchers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::active_watchers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/address.pm b/lib/NGCP/Schema/Result/address.pm index 43dc3306..d312a363 100644 --- a/lib/NGCP/Schema/Result/address.pm +++ b/lib/NGCP/Schema/Result/address.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::address; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/admins.pm b/lib/NGCP/Schema/Result/admins.pm index 9ccfdc34..2da4bcfa 100644 --- a/lib/NGCP/Schema/Result/admins.pm +++ b/lib/NGCP/Schema/Result/admins.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::admins; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON", "EncodedColumn"); diff --git a/lib/NGCP/Schema/Result/aliases.pm b/lib/NGCP/Schema/Result/aliases.pm index 700614fc..4ce19b84 100644 --- a/lib/NGCP/Schema/Result/aliases.pm +++ b/lib/NGCP/Schema/Result/aliases.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::aliases; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_configs.pm b/lib/NGCP/Schema/Result/autoprov_configs.pm index 79aed221..7c0c809d 100644 --- a/lib/NGCP/Schema/Result/autoprov_configs.pm +++ b/lib/NGCP/Schema/Result/autoprov_configs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_configs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_device_line_ranges.pm b/lib/NGCP/Schema/Result/autoprov_device_line_ranges.pm index 1d7dbf7d..6a3ab317 100644 --- a/lib/NGCP/Schema/Result/autoprov_device_line_ranges.pm +++ b/lib/NGCP/Schema/Result/autoprov_device_line_ranges.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_device_line_ranges; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_devices.pm b/lib/NGCP/Schema/Result/autoprov_devices.pm index 0ba9795e..3eeff765 100644 --- a/lib/NGCP/Schema/Result/autoprov_devices.pm +++ b/lib/NGCP/Schema/Result/autoprov_devices.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_devices; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_field_device_lines.pm b/lib/NGCP/Schema/Result/autoprov_field_device_lines.pm index 4a293e74..458e0123 100644 --- a/lib/NGCP/Schema/Result/autoprov_field_device_lines.pm +++ b/lib/NGCP/Schema/Result/autoprov_field_device_lines.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_field_device_lines; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_field_devices.pm b/lib/NGCP/Schema/Result/autoprov_field_devices.pm index de1d9443..436dcc3e 100644 --- a/lib/NGCP/Schema/Result/autoprov_field_devices.pm +++ b/lib/NGCP/Schema/Result/autoprov_field_devices.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_field_devices; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_firmwares.pm b/lib/NGCP/Schema/Result/autoprov_firmwares.pm index 4ffc28d0..bba66b9b 100644 --- a/lib/NGCP/Schema/Result/autoprov_firmwares.pm +++ b/lib/NGCP/Schema/Result/autoprov_firmwares.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_firmwares; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/autoprov_profiles.pm b/lib/NGCP/Schema/Result/autoprov_profiles.pm index c00510ad..ccd034fc 100644 --- a/lib/NGCP/Schema/Result/autoprov_profiles.pm +++ b/lib/NGCP/Schema/Result/autoprov_profiles.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_profiles; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_fees.pm b/lib/NGCP/Schema/Result/billing_fees.pm index 2e80d58a..23267049 100644 --- a/lib/NGCP/Schema/Result/billing_fees.pm +++ b/lib/NGCP/Schema/Result/billing_fees.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_fees; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_fees_history.pm b/lib/NGCP/Schema/Result/billing_fees_history.pm index 634d16a9..6df5da07 100644 --- a/lib/NGCP/Schema/Result/billing_fees_history.pm +++ b/lib/NGCP/Schema/Result/billing_fees_history.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_fees_history; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_mappings.pm b/lib/NGCP/Schema/Result/billing_mappings.pm index 285ecd9d..a15422c5 100644 --- a/lib/NGCP/Schema/Result/billing_mappings.pm +++ b/lib/NGCP/Schema/Result/billing_mappings.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_mappings; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_peaktime_special.pm b/lib/NGCP/Schema/Result/billing_peaktime_special.pm index 80712993..d13d2c21 100644 --- a/lib/NGCP/Schema/Result/billing_peaktime_special.pm +++ b/lib/NGCP/Schema/Result/billing_peaktime_special.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_peaktime_special; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm b/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm index 2af8f343..b2821064 100644 --- a/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm +++ b/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_peaktime_weekdays; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_profiles.pm b/lib/NGCP/Schema/Result/billing_profiles.pm index 69b53281..e93133f5 100644 --- a/lib/NGCP/Schema/Result/billing_profiles.pm +++ b/lib/NGCP/Schema/Result/billing_profiles.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_profiles; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_zones.pm b/lib/NGCP/Schema/Result/billing_zones.pm index 0e22fdba..cfe28747 100644 --- a/lib/NGCP/Schema/Result/billing_zones.pm +++ b/lib/NGCP/Schema/Result/billing_zones.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_zones; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/billing_zones_history.pm b/lib/NGCP/Schema/Result/billing_zones_history.pm index afaa608d..a05118ce 100644 --- a/lib/NGCP/Schema/Result/billing_zones_history.pm +++ b/lib/NGCP/Schema/Result/billing_zones_history.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::billing_zones_history; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/carrier_contracts.pm b/lib/NGCP/Schema/Result/carrier_contracts.pm index f60367e0..25f6fdf8 100644 --- a/lib/NGCP/Schema/Result/carrier_contracts.pm +++ b/lib/NGCP/Schema/Result/carrier_contracts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::carrier_contracts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/carrier_customers.pm b/lib/NGCP/Schema/Result/carrier_customers.pm index 5b914bf8..622adfad 100644 --- a/lib/NGCP/Schema/Result/carrier_customers.pm +++ b/lib/NGCP/Schema/Result/carrier_customers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::carrier_customers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/carrier_orders.pm b/lib/NGCP/Schema/Result/carrier_orders.pm index 9275a8e7..aadfb8b3 100644 --- a/lib/NGCP/Schema/Result/carrier_orders.pm +++ b/lib/NGCP/Schema/Result/carrier_orders.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::carrier_orders; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/carrier_payments.pm b/lib/NGCP/Schema/Result/carrier_payments.pm index 64a97215..95f4dfde 100644 --- a/lib/NGCP/Schema/Result/carrier_payments.pm +++ b/lib/NGCP/Schema/Result/carrier_payments.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::carrier_payments; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/cdr.pm b/lib/NGCP/Schema/Result/cdr.pm index 8b5c3693..55bea454 100644 --- a/lib/NGCP/Schema/Result/cdr.pm +++ b/lib/NGCP/Schema/Result/cdr.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::cdr; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components( "InflateColumn::DateTime", diff --git a/lib/NGCP/Schema/Result/cfg_schema.pm b/lib/NGCP/Schema/Result/cfg_schema.pm index ddec16c2..ac1d851f 100644 --- a/lib/NGCP/Schema/Result/cfg_schema.pm +++ b/lib/NGCP/Schema/Result/cfg_schema.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::cfg_schema; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contacts.pm b/lib/NGCP/Schema/Result/contacts.pm index 6e348a14..347b06dc 100644 --- a/lib/NGCP/Schema/Result/contacts.pm +++ b/lib/NGCP/Schema/Result/contacts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contacts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contract_balances.pm b/lib/NGCP/Schema/Result/contract_balances.pm index 73163b00..a8d42fa7 100644 --- a/lib/NGCP/Schema/Result/contract_balances.pm +++ b/lib/NGCP/Schema/Result/contract_balances.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contract_balances; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contract_credits.pm b/lib/NGCP/Schema/Result/contract_credits.pm index 9892a723..957d1da0 100644 --- a/lib/NGCP/Schema/Result/contract_credits.pm +++ b/lib/NGCP/Schema/Result/contract_credits.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contract_credits; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contract_fraud_preferences.pm b/lib/NGCP/Schema/Result/contract_fraud_preferences.pm index 9817d0ca..ce65dff3 100644 --- a/lib/NGCP/Schema/Result/contract_fraud_preferences.pm +++ b/lib/NGCP/Schema/Result/contract_fraud_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contract_fraud_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contract_registers.pm b/lib/NGCP/Schema/Result/contract_registers.pm index 74db2252..1ff739f4 100644 --- a/lib/NGCP/Schema/Result/contract_registers.pm +++ b/lib/NGCP/Schema/Result/contract_registers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contract_registers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/contracts.pm b/lib/NGCP/Schema/Result/contracts.pm index 0b57259a..33e95e99 100644 --- a/lib/NGCP/Schema/Result/contracts.pm +++ b/lib/NGCP/Schema/Result/contracts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::contracts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/credit_payments.pm b/lib/NGCP/Schema/Result/credit_payments.pm index 035f5c58..f5098c40 100644 --- a/lib/NGCP/Schema/Result/credit_payments.pm +++ b/lib/NGCP/Schema/Result/credit_payments.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::credit_payments; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/credits.pm b/lib/NGCP/Schema/Result/credits.pm index a02e638e..f38b5a42 100644 --- a/lib/NGCP/Schema/Result/credits.pm +++ b/lib/NGCP/Schema/Result/credits.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::credits; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/customer_registers.pm b/lib/NGCP/Schema/Result/customer_registers.pm index 2024eda9..2e6c5e97 100644 --- a/lib/NGCP/Schema/Result/customer_registers.pm +++ b/lib/NGCP/Schema/Result/customer_registers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::customer_registers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/customers.pm b/lib/NGCP/Schema/Result/customers.pm index 64cc3db9..f0006882 100644 --- a/lib/NGCP/Schema/Result/customers.pm +++ b/lib/NGCP/Schema/Result/customers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::customers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/db_schema.pm b/lib/NGCP/Schema/Result/db_schema.pm index cde1e166..cdb91731 100644 --- a/lib/NGCP/Schema/Result/db_schema.pm +++ b/lib/NGCP/Schema/Result/db_schema.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::db_schema; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dbaliases.pm b/lib/NGCP/Schema/Result/dbaliases.pm index 4c1b7629..6b26f97b 100644 --- a/lib/NGCP/Schema/Result/dbaliases.pm +++ b/lib/NGCP/Schema/Result/dbaliases.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dbaliases; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dialog.pm b/lib/NGCP/Schema/Result/dialog.pm index f63bca7f..68f306ab 100644 --- a/lib/NGCP/Schema/Result/dialog.pm +++ b/lib/NGCP/Schema/Result/dialog.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dialog; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dialog_vars.pm b/lib/NGCP/Schema/Result/dialog_vars.pm index e6e16eb4..3a704604 100644 --- a/lib/NGCP/Schema/Result/dialog_vars.pm +++ b/lib/NGCP/Schema/Result/dialog_vars.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dialog_vars; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dialplan.pm b/lib/NGCP/Schema/Result/dialplan.pm index 90329148..d8026b1d 100644 --- a/lib/NGCP/Schema/Result/dialplan.pm +++ b/lib/NGCP/Schema/Result/dialplan.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dialplan; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dispatcher.pm b/lib/NGCP/Schema/Result/dispatcher.pm index d7e0bd48..e12dc0e7 100644 --- a/lib/NGCP/Schema/Result/dispatcher.pm +++ b/lib/NGCP/Schema/Result/dispatcher.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dispatcher; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/dom_preferences.pm b/lib/NGCP/Schema/Result/dom_preferences.pm index ac2754cd..3b0383b2 100644 --- a/lib/NGCP/Schema/Result/dom_preferences.pm +++ b/lib/NGCP/Schema/Result/dom_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::dom_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/domain.pm b/lib/NGCP/Schema/Result/domain.pm index 105c11e3..c5c57664 100644 --- a/lib/NGCP/Schema/Result/domain.pm +++ b/lib/NGCP/Schema/Result/domain.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::domain; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/domain_attrs.pm b/lib/NGCP/Schema/Result/domain_attrs.pm index 22074f14..e3d5ec11 100644 --- a/lib/NGCP/Schema/Result/domain_attrs.pm +++ b/lib/NGCP/Schema/Result/domain_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::domain_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/domain_resellers.pm b/lib/NGCP/Schema/Result/domain_resellers.pm index 11114a15..3da5445c 100644 --- a/lib/NGCP/Schema/Result/domain_resellers.pm +++ b/lib/NGCP/Schema/Result/domain_resellers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::domain_resellers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/domains.pm b/lib/NGCP/Schema/Result/domains.pm index b3017241..dd0fface 100644 --- a/lib/NGCP/Schema/Result/domains.pm +++ b/lib/NGCP/Schema/Result/domains.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::domains; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/fax_destinations.pm b/lib/NGCP/Schema/Result/fax_destinations.pm index 33e180f1..90e1a806 100644 --- a/lib/NGCP/Schema/Result/fax_destinations.pm +++ b/lib/NGCP/Schema/Result/fax_destinations.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::fax_destinations; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/fax_journal.pm b/lib/NGCP/Schema/Result/fax_journal.pm index 3f454e86..c1ef3707 100644 --- a/lib/NGCP/Schema/Result/fax_journal.pm +++ b/lib/NGCP/Schema/Result/fax_journal.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::fax_journal; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/fax_preferences.pm b/lib/NGCP/Schema/Result/fax_preferences.pm index d7982e29..fa6e10a5 100644 --- a/lib/NGCP/Schema/Result/fax_preferences.pm +++ b/lib/NGCP/Schema/Result/fax_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::fax_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/htable.pm b/lib/NGCP/Schema/Result/htable.pm index 15cf1d00..af7ecfc5 100644 --- a/lib/NGCP/Schema/Result/htable.pm +++ b/lib/NGCP/Schema/Result/htable.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::htable; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/interceptions.pm b/lib/NGCP/Schema/Result/interceptions.pm index 5556a4e5..a97214f8 100644 --- a/lib/NGCP/Schema/Result/interceptions.pm +++ b/lib/NGCP/Schema/Result/interceptions.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::interceptions; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/invoices.pm b/lib/NGCP/Schema/Result/invoices.pm index ec7aacc0..33bd344f 100644 --- a/lib/NGCP/Schema/Result/invoices.pm +++ b/lib/NGCP/Schema/Result/invoices.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::invoices; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/kamailio_acc.pm b/lib/NGCP/Schema/Result/kamailio_acc.pm index 3389388c..c5d4f7a3 100644 --- a/lib/NGCP/Schema/Result/kamailio_acc.pm +++ b/lib/NGCP/Schema/Result/kamailio_acc.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::kamailio_acc; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/kamailio_acc_backup.pm b/lib/NGCP/Schema/Result/kamailio_acc_backup.pm index b4db8752..3a608fcf 100644 --- a/lib/NGCP/Schema/Result/kamailio_acc_backup.pm +++ b/lib/NGCP/Schema/Result/kamailio_acc_backup.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::kamailio_acc_backup; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/kamailio_acc_trash.pm b/lib/NGCP/Schema/Result/kamailio_acc_trash.pm index 19b75219..b787fc97 100644 --- a/lib/NGCP/Schema/Result/kamailio_acc_trash.pm +++ b/lib/NGCP/Schema/Result/kamailio_acc_trash.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::kamailio_acc_trash; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/language_strings.pm b/lib/NGCP/Schema/Result/language_strings.pm index 41815b66..153f1d55 100644 --- a/lib/NGCP/Schema/Result/language_strings.pm +++ b/lib/NGCP/Schema/Result/language_strings.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::language_strings; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/lcr_gw.pm b/lib/NGCP/Schema/Result/lcr_gw.pm index 9e700cd9..c5b80983 100644 --- a/lib/NGCP/Schema/Result/lcr_gw.pm +++ b/lib/NGCP/Schema/Result/lcr_gw.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::lcr_gw; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/lcr_rule.pm b/lib/NGCP/Schema/Result/lcr_rule.pm index 0ef5f63f..adcdc23d 100644 --- a/lib/NGCP/Schema/Result/lcr_rule.pm +++ b/lib/NGCP/Schema/Result/lcr_rule.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::lcr_rule; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/lcr_rule_target.pm b/lib/NGCP/Schema/Result/lcr_rule_target.pm index daee1913..d8c0137b 100644 --- a/lib/NGCP/Schema/Result/lcr_rule_target.pm +++ b/lib/NGCP/Schema/Result/lcr_rule_target.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::lcr_rule_target; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/lnp_numbers.pm b/lib/NGCP/Schema/Result/lnp_numbers.pm index 9994ac4f..d39726b5 100644 --- a/lib/NGCP/Schema/Result/lnp_numbers.pm +++ b/lib/NGCP/Schema/Result/lnp_numbers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::lnp_numbers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/lnp_providers.pm b/lib/NGCP/Schema/Result/lnp_providers.pm index 040f8a8a..f82a2ce5 100644 --- a/lib/NGCP/Schema/Result/lnp_providers.pm +++ b/lib/NGCP/Schema/Result/lnp_providers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::lnp_providers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/location.pm b/lib/NGCP/Schema/Result/location.pm index 09886f7f..8205f682 100644 --- a/lib/NGCP/Schema/Result/location.pm +++ b/lib/NGCP/Schema/Result/location.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::location; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/location_attrs.pm b/lib/NGCP/Schema/Result/location_attrs.pm index df94f825..7493607e 100644 --- a/lib/NGCP/Schema/Result/location_attrs.pm +++ b/lib/NGCP/Schema/Result/location_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::location_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/mark.pm b/lib/NGCP/Schema/Result/mark.pm index 31acfa81..ef80c534 100644 --- a/lib/NGCP/Schema/Result/mark.pm +++ b/lib/NGCP/Schema/Result/mark.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::mark; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/message_packets.pm b/lib/NGCP/Schema/Result/message_packets.pm index 5d17de03..104b003b 100644 --- a/lib/NGCP/Schema/Result/message_packets.pm +++ b/lib/NGCP/Schema/Result/message_packets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::message_packets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/messages.pm b/lib/NGCP/Schema/Result/messages.pm index 5e9b5b35..ca8efcf0 100644 --- a/lib/NGCP/Schema/Result/messages.pm +++ b/lib/NGCP/Schema/Result/messages.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::messages; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components( "InflateColumn::DateTime", diff --git a/lib/NGCP/Schema/Result/mobile_push_registrations.pm b/lib/NGCP/Schema/Result/mobile_push_registrations.pm index c0fc9ff8..7d0f1593 100644 --- a/lib/NGCP/Schema/Result/mobile_push_registrations.pm +++ b/lib/NGCP/Schema/Result/mobile_push_registrations.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::mobile_push_registrations; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/ncos_levels.pm b/lib/NGCP/Schema/Result/ncos_levels.pm index 3bde1ebd..5fe734ed 100644 --- a/lib/NGCP/Schema/Result/ncos_levels.pm +++ b/lib/NGCP/Schema/Result/ncos_levels.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::ncos_levels; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/ncos_lnp_list.pm b/lib/NGCP/Schema/Result/ncos_lnp_list.pm index 16223221..314761c5 100644 --- a/lib/NGCP/Schema/Result/ncos_lnp_list.pm +++ b/lib/NGCP/Schema/Result/ncos_lnp_list.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::ncos_lnp_list; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/ncos_pattern_list.pm b/lib/NGCP/Schema/Result/ncos_pattern_list.pm index 26811980..09e4a2cb 100644 --- a/lib/NGCP/Schema/Result/ncos_pattern_list.pm +++ b/lib/NGCP/Schema/Result/ncos_pattern_list.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::ncos_pattern_list; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/numbers.pm b/lib/NGCP/Schema/Result/numbers.pm index a2947a5a..bcd88475 100644 --- a/lib/NGCP/Schema/Result/numbers.pm +++ b/lib/NGCP/Schema/Result/numbers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::numbers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/order_payments.pm b/lib/NGCP/Schema/Result/order_payments.pm index b7b1170c..0d5b6c35 100644 --- a/lib/NGCP/Schema/Result/order_payments.pm +++ b/lib/NGCP/Schema/Result/order_payments.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::order_payments; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/orders.pm b/lib/NGCP/Schema/Result/orders.pm index 7034c4ec..644909e7 100644 --- a/lib/NGCP/Schema/Result/orders.pm +++ b/lib/NGCP/Schema/Result/orders.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::orders; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/packets.pm b/lib/NGCP/Schema/Result/packets.pm index 4c97decf..b0b6a162 100644 --- a/lib/NGCP/Schema/Result/packets.pm +++ b/lib/NGCP/Schema/Result/packets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::packets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/payments.pm b/lib/NGCP/Schema/Result/payments.pm index e6ce1727..f4d88a02 100644 --- a/lib/NGCP/Schema/Result/payments.pm +++ b/lib/NGCP/Schema/Result/payments.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::payments; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/peer_preferences.pm b/lib/NGCP/Schema/Result/peer_preferences.pm index b651f5db..d24c4758 100644 --- a/lib/NGCP/Schema/Result/peer_preferences.pm +++ b/lib/NGCP/Schema/Result/peer_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::peer_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/prepaid_costs.pm b/lib/NGCP/Schema/Result/prepaid_costs.pm index 55e3c307..0348f70c 100644 --- a/lib/NGCP/Schema/Result/prepaid_costs.pm +++ b/lib/NGCP/Schema/Result/prepaid_costs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::prepaid_costs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/presentity.pm b/lib/NGCP/Schema/Result/presentity.pm index 7d1903f2..def3ee2c 100644 --- a/lib/NGCP/Schema/Result/presentity.pm +++ b/lib/NGCP/Schema/Result/presentity.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::presentity; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/products.pm b/lib/NGCP/Schema/Result/products.pm index 892ccfaa..af839dba 100644 --- a/lib/NGCP/Schema/Result/products.pm +++ b/lib/NGCP/Schema/Result/products.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::products; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm b/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm index 9369efd4..1dfae74a 100644 --- a/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm +++ b/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::provisioning_voip_subscribers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/pua.pm b/lib/NGCP/Schema/Result/pua.pm index 58802f06..5e56c419 100644 --- a/lib/NGCP/Schema/Result/pua.pm +++ b/lib/NGCP/Schema/Result/pua.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::pua; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/resellers.pm b/lib/NGCP/Schema/Result/resellers.pm index 1ec16b7b..15384480 100644 --- a/lib/NGCP/Schema/Result/resellers.pm +++ b/lib/NGCP/Schema/Result/resellers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::resellers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/rls_presentity.pm b/lib/NGCP/Schema/Result/rls_presentity.pm index 5d933113..7e1a408b 100644 --- a/lib/NGCP/Schema/Result/rls_presentity.pm +++ b/lib/NGCP/Schema/Result/rls_presentity.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::rls_presentity; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/rls_watchers.pm b/lib/NGCP/Schema/Result/rls_watchers.pm index 7063c739..933ace98 100644 --- a/lib/NGCP/Schema/Result/rls_watchers.pm +++ b/lib/NGCP/Schema/Result/rls_watchers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::rls_watchers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/sca_subscriptions.pm b/lib/NGCP/Schema/Result/sca_subscriptions.pm index 5c8d11c4..447af0c6 100644 --- a/lib/NGCP/Schema/Result/sca_subscriptions.pm +++ b/lib/NGCP/Schema/Result/sca_subscriptions.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::sca_subscriptions; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/sems_registrations.pm b/lib/NGCP/Schema/Result/sems_registrations.pm index 38f97b50..7b01573c 100644 --- a/lib/NGCP/Schema/Result/sems_registrations.pm +++ b/lib/NGCP/Schema/Result/sems_registrations.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::sems_registrations; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/silo.pm b/lib/NGCP/Schema/Result/silo.pm index 68dcb885..def8a6f7 100644 --- a/lib/NGCP/Schema/Result/silo.pm +++ b/lib/NGCP/Schema/Result/silo.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::silo; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/sipstats_mark.pm b/lib/NGCP/Schema/Result/sipstats_mark.pm index 17de4bee..317eddb3 100644 --- a/lib/NGCP/Schema/Result/sipstats_mark.pm +++ b/lib/NGCP/Schema/Result/sipstats_mark.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::sipstats_mark; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/speed_dial.pm b/lib/NGCP/Schema/Result/speed_dial.pm index 7fff6d30..9edb31f3 100644 --- a/lib/NGCP/Schema/Result/speed_dial.pm +++ b/lib/NGCP/Schema/Result/speed_dial.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::speed_dial; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/statistics.pm b/lib/NGCP/Schema/Result/statistics.pm index 40cca58b..418e5a61 100644 --- a/lib/NGCP/Schema/Result/statistics.pm +++ b/lib/NGCP/Schema/Result/statistics.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::statistics; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/subscriber.pm b/lib/NGCP/Schema/Result/subscriber.pm index 9184014a..b0610472 100644 --- a/lib/NGCP/Schema/Result/subscriber.pm +++ b/lib/NGCP/Schema/Result/subscriber.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::subscriber; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/subscribers.pm b/lib/NGCP/Schema/Result/subscribers.pm index 1da85d7d..ad418f28 100644 --- a/lib/NGCP/Schema/Result/subscribers.pm +++ b/lib/NGCP/Schema/Result/subscribers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::subscribers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/trusted.pm b/lib/NGCP/Schema/Result/trusted.pm index 24eb1e42..b39409ad 100644 --- a/lib/NGCP/Schema/Result/trusted.pm +++ b/lib/NGCP/Schema/Result/trusted.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::trusted; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_credentials.pm b/lib/NGCP/Schema/Result/uid_credentials.pm index a61c45f4..9a1e05ba 100644 --- a/lib/NGCP/Schema/Result/uid_credentials.pm +++ b/lib/NGCP/Schema/Result/uid_credentials.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_credentials; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_domain.pm b/lib/NGCP/Schema/Result/uid_domain.pm index 20457866..8993ea3f 100644 --- a/lib/NGCP/Schema/Result/uid_domain.pm +++ b/lib/NGCP/Schema/Result/uid_domain.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_domain; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_domain_attrs.pm b/lib/NGCP/Schema/Result/uid_domain_attrs.pm index 8772d0a8..3e7abebf 100644 --- a/lib/NGCP/Schema/Result/uid_domain_attrs.pm +++ b/lib/NGCP/Schema/Result/uid_domain_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_domain_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_global_attrs.pm b/lib/NGCP/Schema/Result/uid_global_attrs.pm index 0ba4be5d..67dfc33d 100644 --- a/lib/NGCP/Schema/Result/uid_global_attrs.pm +++ b/lib/NGCP/Schema/Result/uid_global_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_global_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_uri.pm b/lib/NGCP/Schema/Result/uid_uri.pm index c740b842..644770ad 100644 --- a/lib/NGCP/Schema/Result/uid_uri.pm +++ b/lib/NGCP/Schema/Result/uid_uri.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_uri; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_uri_attrs.pm b/lib/NGCP/Schema/Result/uid_uri_attrs.pm index a335cdee..5d79812a 100644 --- a/lib/NGCP/Schema/Result/uid_uri_attrs.pm +++ b/lib/NGCP/Schema/Result/uid_uri_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_uri_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/uid_user_attrs.pm b/lib/NGCP/Schema/Result/uid_user_attrs.pm index 409572a8..4672fed8 100644 --- a/lib/NGCP/Schema/Result/uid_user_attrs.pm +++ b/lib/NGCP/Schema/Result/uid_user_attrs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::uid_user_attrs; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/usr_preferences.pm b/lib/NGCP/Schema/Result/usr_preferences.pm index 79ea5554..e0cc89dd 100644 --- a/lib/NGCP/Schema/Result/usr_preferences.pm +++ b/lib/NGCP/Schema/Result/usr_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::usr_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/version.pm b/lib/NGCP/Schema/Result/version.pm index dbfd77b9..9234b88c 100644 --- a/lib/NGCP/Schema/Result/version.pm +++ b/lib/NGCP/Schema/Result/version.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::version; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voicemail_spool.pm b/lib/NGCP/Schema/Result/voicemail_spool.pm index 972d7842..83b475a1 100644 --- a/lib/NGCP/Schema/Result/voicemail_spool.pm +++ b/lib/NGCP/Schema/Result/voicemail_spool.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voicemail_spool; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components( "InflateColumn::DateTime", diff --git a/lib/NGCP/Schema/Result/voicemail_users.pm b/lib/NGCP/Schema/Result/voicemail_users.pm index 31cae91b..6e0355d8 100644 --- a/lib/NGCP/Schema/Result/voicemail_users.pm +++ b/lib/NGCP/Schema/Result/voicemail_users.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voicemail_users; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_aig_sequence.pm b/lib/NGCP/Schema/Result/voip_aig_sequence.pm index fa05d2cc..b252839c 100644 --- a/lib/NGCP/Schema/Result/voip_aig_sequence.pm +++ b/lib/NGCP/Schema/Result/voip_aig_sequence.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_aig_sequence; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm b/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm index 9fb4acda..31e072bc 100644 --- a/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm +++ b/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_allowed_ip_groups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cc_mappings.pm b/lib/NGCP/Schema/Result/voip_cc_mappings.pm index 184c3ef4..b4535c2d 100644 --- a/lib/NGCP/Schema/Result/voip_cc_mappings.pm +++ b/lib/NGCP/Schema/Result/voip_cc_mappings.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cc_mappings; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm b/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm index ec1b2681..a347ab73 100644 --- a/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm +++ b/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cf_destination_sets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cf_destinations.pm b/lib/NGCP/Schema/Result/voip_cf_destinations.pm index 846b69d3..58dd73ff 100644 --- a/lib/NGCP/Schema/Result/voip_cf_destinations.pm +++ b/lib/NGCP/Schema/Result/voip_cf_destinations.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cf_destinations; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cf_mappings.pm b/lib/NGCP/Schema/Result/voip_cf_mappings.pm index 6e1a4a40..a633ec18 100644 --- a/lib/NGCP/Schema/Result/voip_cf_mappings.pm +++ b/lib/NGCP/Schema/Result/voip_cf_mappings.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cf_mappings; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cf_periods.pm b/lib/NGCP/Schema/Result/voip_cf_periods.pm index 69d83d13..e479661f 100644 --- a/lib/NGCP/Schema/Result/voip_cf_periods.pm +++ b/lib/NGCP/Schema/Result/voip_cf_periods.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cf_periods; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_cf_time_sets.pm b/lib/NGCP/Schema/Result/voip_cf_time_sets.pm index 3f2b716a..0b03a5e2 100644 --- a/lib/NGCP/Schema/Result/voip_cf_time_sets.pm +++ b/lib/NGCP/Schema/Result/voip_cf_time_sets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_cf_time_sets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_contacts.pm b/lib/NGCP/Schema/Result/voip_contacts.pm index 2a7e4a96..39b13b3f 100644 --- a/lib/NGCP/Schema/Result/voip_contacts.pm +++ b/lib/NGCP/Schema/Result/voip_contacts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_contacts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_dbaliases.pm b/lib/NGCP/Schema/Result/voip_dbaliases.pm index bc314261..8da7276b 100644 --- a/lib/NGCP/Schema/Result/voip_dbaliases.pm +++ b/lib/NGCP/Schema/Result/voip_dbaliases.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_dbaliases; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_dom_preferences.pm b/lib/NGCP/Schema/Result/voip_dom_preferences.pm index 319f7696..1aca4494 100644 --- a/lib/NGCP/Schema/Result/voip_dom_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_dom_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_dom_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_domains.pm b/lib/NGCP/Schema/Result/voip_domains.pm index aaeddcdb..bd1a8c38 100644 --- a/lib/NGCP/Schema/Result/voip_domains.pm +++ b/lib/NGCP/Schema/Result/voip_domains.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_domains; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_fax_destinations.pm b/lib/NGCP/Schema/Result/voip_fax_destinations.pm index 76cc2606..748dee4c 100644 --- a/lib/NGCP/Schema/Result/voip_fax_destinations.pm +++ b/lib/NGCP/Schema/Result/voip_fax_destinations.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_fax_destinations; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_fax_preferences.pm b/lib/NGCP/Schema/Result/voip_fax_preferences.pm index a240f4be..c37b3ad8 100644 --- a/lib/NGCP/Schema/Result/voip_fax_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_fax_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_fax_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_intercept.pm b/lib/NGCP/Schema/Result/voip_intercept.pm index 6479588b..902eb4da 100644 --- a/lib/NGCP/Schema/Result/voip_intercept.pm +++ b/lib/NGCP/Schema/Result/voip_intercept.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_intercept; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_number_block_resellers.pm b/lib/NGCP/Schema/Result/voip_number_block_resellers.pm index 3e827271..845a6205 100644 --- a/lib/NGCP/Schema/Result/voip_number_block_resellers.pm +++ b/lib/NGCP/Schema/Result/voip_number_block_resellers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_number_block_resellers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_number_blocks.pm b/lib/NGCP/Schema/Result/voip_number_blocks.pm index 04d48a2e..3cdf2e7a 100644 --- a/lib/NGCP/Schema/Result/voip_number_blocks.pm +++ b/lib/NGCP/Schema/Result/voip_number_blocks.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_number_blocks; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_numbers.pm b/lib/NGCP/Schema/Result/voip_numbers.pm index 2fffabdf..7a23a4f2 100644 --- a/lib/NGCP/Schema/Result/voip_numbers.pm +++ b/lib/NGCP/Schema/Result/voip_numbers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_numbers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm b/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm index baf4de08..be636942 100644 --- a/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm +++ b/lib/NGCP/Schema/Result/voip_pbx_autoattendants.pm @@ -1,6 +1,6 @@ package NGCP::Schema::Result::voip_pbx_autoattendants; use Scalar::Util qw(blessed); -our $VERSION = '2.006'; +our $VERSION = '2.007'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_pbx_groups.pm b/lib/NGCP/Schema/Result/voip_pbx_groups.pm index 7c76284f..b38ad91a 100644 --- a/lib/NGCP/Schema/Result/voip_pbx_groups.pm +++ b/lib/NGCP/Schema/Result/voip_pbx_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_pbx_groups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_peer_groups.pm b/lib/NGCP/Schema/Result/voip_peer_groups.pm index a2c953ad..b527e7c4 100644 --- a/lib/NGCP/Schema/Result/voip_peer_groups.pm +++ b/lib/NGCP/Schema/Result/voip_peer_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_peer_groups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_peer_hosts.pm b/lib/NGCP/Schema/Result/voip_peer_hosts.pm index 9cdf676a..7efda46f 100644 --- a/lib/NGCP/Schema/Result/voip_peer_hosts.pm +++ b/lib/NGCP/Schema/Result/voip_peer_hosts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_peer_hosts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_peer_preferences.pm b/lib/NGCP/Schema/Result/voip_peer_preferences.pm index 934cb092..34b67129 100644 --- a/lib/NGCP/Schema/Result/voip_peer_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_peer_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_peer_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_peer_rules.pm b/lib/NGCP/Schema/Result/voip_peer_rules.pm index 9db75c79..c529b4b1 100644 --- a/lib/NGCP/Schema/Result/voip_peer_rules.pm +++ b/lib/NGCP/Schema/Result/voip_peer_rules.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_peer_rules; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_preference_groups.pm b/lib/NGCP/Schema/Result/voip_preference_groups.pm index 5bdd13b3..3402ad88 100644 --- a/lib/NGCP/Schema/Result/voip_preference_groups.pm +++ b/lib/NGCP/Schema/Result/voip_preference_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_preference_groups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_preferences.pm b/lib/NGCP/Schema/Result/voip_preferences.pm index f84e9032..7ca6515f 100644 --- a/lib/NGCP/Schema/Result/voip_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_preferences_enum.pm b/lib/NGCP/Schema/Result/voip_preferences_enum.pm index b6770a7d..93c06c52 100644 --- a/lib/NGCP/Schema/Result/voip_preferences_enum.pm +++ b/lib/NGCP/Schema/Result/voip_preferences_enum.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_preferences_enum; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_reminder.pm b/lib/NGCP/Schema/Result/voip_reminder.pm index 31a4fee5..d7157b37 100644 --- a/lib/NGCP/Schema/Result/voip_reminder.pm +++ b/lib/NGCP/Schema/Result/voip_reminder.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_reminder; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm b/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm index f0b42e41..8737f285 100644 --- a/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm +++ b/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_rewrite_rule_sets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_rewrite_rules.pm b/lib/NGCP/Schema/Result/voip_rewrite_rules.pm index 565e4583..cc8aff03 100644 --- a/lib/NGCP/Schema/Result/voip_rewrite_rules.pm +++ b/lib/NGCP/Schema/Result/voip_rewrite_rules.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_rewrite_rules; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm b/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm index 0e7928e7..ceb0dd4e 100644 --- a/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm +++ b/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_rwrs_sequence; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_sound_files.pm b/lib/NGCP/Schema/Result/voip_sound_files.pm index b699178c..4a2e0f2f 100644 --- a/lib/NGCP/Schema/Result/voip_sound_files.pm +++ b/lib/NGCP/Schema/Result/voip_sound_files.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_sound_files; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_sound_groups.pm b/lib/NGCP/Schema/Result/voip_sound_groups.pm index a8686ebd..3753be43 100644 --- a/lib/NGCP/Schema/Result/voip_sound_groups.pm +++ b/lib/NGCP/Schema/Result/voip_sound_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_sound_groups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_sound_handles.pm b/lib/NGCP/Schema/Result/voip_sound_handles.pm index acff77bb..e29d3574 100644 --- a/lib/NGCP/Schema/Result/voip_sound_handles.pm +++ b/lib/NGCP/Schema/Result/voip_sound_handles.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_sound_handles; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_sound_sets.pm b/lib/NGCP/Schema/Result/voip_sound_sets.pm index 5b1706ac..722641c0 100644 --- a/lib/NGCP/Schema/Result/voip_sound_sets.pm +++ b/lib/NGCP/Schema/Result/voip_sound_sets.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_sound_sets; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_speed_dial.pm b/lib/NGCP/Schema/Result/voip_speed_dial.pm index 6f18e533..72134be1 100644 --- a/lib/NGCP/Schema/Result/voip_speed_dial.pm +++ b/lib/NGCP/Schema/Result/voip_speed_dial.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_speed_dial; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_subscribers.pm b/lib/NGCP/Schema/Result/voip_subscribers.pm index 6947c333..9f2add49 100644 --- a/lib/NGCP/Schema/Result/voip_subscribers.pm +++ b/lib/NGCP/Schema/Result/voip_subscribers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_subscribers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_trusted_sources.pm b/lib/NGCP/Schema/Result/voip_trusted_sources.pm index 9bb46b56..812bafad 100644 --- a/lib/NGCP/Schema/Result/voip_trusted_sources.pm +++ b/lib/NGCP/Schema/Result/voip_trusted_sources.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_trusted_sources; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/voip_usr_preferences.pm b/lib/NGCP/Schema/Result/voip_usr_preferences.pm index 0da6129d..5f804a4f 100644 --- a/lib/NGCP/Schema/Result/voip_usr_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_usr_preferences.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_usr_preferences; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/watchers.pm b/lib/NGCP/Schema/Result/watchers.pm index 7488e021..4b0c26de 100644 --- a/lib/NGCP/Schema/Result/watchers.pm +++ b/lib/NGCP/Schema/Result/watchers.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::watchers; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/xcap.pm b/lib/NGCP/Schema/Result/xcap.pm index 842c821a..ec329198 100644 --- a/lib/NGCP/Schema/Result/xcap.pm +++ b/lib/NGCP/Schema/Result/xcap.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::xcap; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/xmlgroups.pm b/lib/NGCP/Schema/Result/xmlgroups.pm index 68f70750..75320a83 100644 --- a/lib/NGCP/Schema/Result/xmlgroups.pm +++ b/lib/NGCP/Schema/Result/xmlgroups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::xmlgroups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/xmlhostgroups.pm b/lib/NGCP/Schema/Result/xmlhostgroups.pm index cc2a501b..801f5399 100644 --- a/lib/NGCP/Schema/Result/xmlhostgroups.pm +++ b/lib/NGCP/Schema/Result/xmlhostgroups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::xmlhostgroups; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/xmlhosts.pm b/lib/NGCP/Schema/Result/xmlhosts.pm index b24c8bfa..a4ae18b9 100644 --- a/lib/NGCP/Schema/Result/xmlhosts.pm +++ b/lib/NGCP/Schema/Result/xmlhosts.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::xmlhosts; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/Result/xmlqueue.pm b/lib/NGCP/Schema/Result/xmlqueue.pm index 0d1bfc62..46d3a2aa 100644 --- a/lib/NGCP/Schema/Result/xmlqueue.pm +++ b/lib/NGCP/Schema/Result/xmlqueue.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::xmlqueue; use Scalar::Util qw(blessed); use parent 'DBIx::Class::Core'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components("InflateColumn::DateTime", "Helper::Row::ToJSON"); diff --git a/lib/NGCP/Schema/ResultSet.pm b/lib/NGCP/Schema/ResultSet.pm index e83dee2e..68f9143b 100644 --- a/lib/NGCP/Schema/ResultSet.pm +++ b/lib/NGCP/Schema/ResultSet.pm @@ -2,7 +2,7 @@ package NGCP::Schema::ResultSet; use Sipwise::Base; extends 'DBIx::Class::ResultSet'; -our $VERSION = '2.006'; +our $VERSION = '2.007'; __PACKAGE__->load_components( 'Helper::ResultSet::IgnoreWantarray',