diff --git a/Changes b/Changes index 3c647ab4..a7385846 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,10 @@ Changes - Revision history for NGCP-Schema +=head2 2.002 2013-07-24 + +inflation of epoch stored as string + =head2 2.001 2013-07-19 =over diff --git a/README b/README index 8199a83d..969e6dd6 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ =encoding UTF-8 -NGCP-Schema version 2.001 +NGCP-Schema version 2.002 =head1 NAME diff --git a/debian/changelog b/debian/changelog index bad92374..e33df6e3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ngcp-schema (2.002) unstable; urgency=low + + * inflation of epoch stored as string + + -- Lars Dieckow Wed, 24 Jul 2013 15:50:46 +0200 + ngcp-schema (2.001) unstable; urgency=low * load DBIx::Class::Helper::ResultSet for SetOperations/union method diff --git a/lib/NGCP/Schema.pm b/lib/NGCP/Schema.pm index 2f549f47..4a7cf5ee 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.001'; +our $VERSION = '2.002'; __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.001 +This document describes NGCP::Schema version 2.002 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Config.pm b/lib/NGCP/Schema/Config.pm index 28c73e23..ef111360 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.001'; +our $VERSION = '2.002'; 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.001 +This document describes NGCP::Schema::Config version 2.002 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Exception.pm b/lib/NGCP/Schema/Exception.pm index d6e3f2ca..12ebe6dc 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.001'; +our $VERSION = '2.002'; 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.001 +This document describes NGCP::Schema::Exception version 2.002 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMilli.pm index 3e2dc911..8b1641a1 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.001'; +our $VERSION = '2.002'; __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 ba1580c9..18017e39 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.001'; +our $VERSION = '2.002'; __PACKAGE__->load_components( qw( InflateColumn::DateTime ) ); diff --git a/lib/NGCP/Schema/Result/acc.pm b/lib/NGCP/Schema/Result/acc.pm index 0f1a48b7..830123eb 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/acc_backup.pm b/lib/NGCP/Schema/Result/acc_backup.pm index d35bf6a3..def1f2ad 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/acc_trash.pm b/lib/NGCP/Schema/Result/acc_trash.pm index db7a9d5a..71e6da56 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/active_watchers.pm b/lib/NGCP/Schema/Result/active_watchers.pm index bcd96980..e4982a33 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/address.pm b/lib/NGCP/Schema/Result/address.pm index 5b70c0c9..252e6eb5 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/admins.pm b/lib/NGCP/Schema/Result/admins.pm index 9e7cb5b2..4aa7e802 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/aliases.pm b/lib/NGCP/Schema/Result/aliases.pm index 5e544de0..5e5270f5 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_fees.pm b/lib/NGCP/Schema/Result/billing_fees.pm index 0ebd6c4f..fec5d5ac 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_fees_history.pm b/lib/NGCP/Schema/Result/billing_fees_history.pm index 7aeb0eb2..7ffc1af1 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_mappings.pm b/lib/NGCP/Schema/Result/billing_mappings.pm index 32f231e1..570eb415 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_peaktime_special.pm b/lib/NGCP/Schema/Result/billing_peaktime_special.pm index 57a4fbc8..c06f5768 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm b/lib/NGCP/Schema/Result/billing_peaktime_weekdays.pm index f8cfee97..5d0de457 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_profiles.pm b/lib/NGCP/Schema/Result/billing_profiles.pm index 141bdbdf..dc2d450c 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_zones.pm b/lib/NGCP/Schema/Result/billing_zones.pm index 688325b8..b2a0b05a 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/billing_zones_history.pm b/lib/NGCP/Schema/Result/billing_zones_history.pm index 8f4e91cf..d63f77fc 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/carrier_contracts.pm b/lib/NGCP/Schema/Result/carrier_contracts.pm index a5545310..e3931f62 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/carrier_customers.pm b/lib/NGCP/Schema/Result/carrier_customers.pm index 136d7daa..a75942a3 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/carrier_orders.pm b/lib/NGCP/Schema/Result/carrier_orders.pm index c934bf84..274ce00d 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/carrier_payments.pm b/lib/NGCP/Schema/Result/carrier_payments.pm index a3972259..aec33f02 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/cdr.pm b/lib/NGCP/Schema/Result/cdr.pm index dc46db8a..8ac923a1 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/cfg_schema.pm b/lib/NGCP/Schema/Result/cfg_schema.pm index 6e500125..125a908b 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contacts.pm b/lib/NGCP/Schema/Result/contacts.pm index ed47826e..3d6fbc29 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contract_balances.pm b/lib/NGCP/Schema/Result/contract_balances.pm index 860d90eb..28e8d199 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contract_credits.pm b/lib/NGCP/Schema/Result/contract_credits.pm index 2f66e6b4..c7543e21 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contract_fraud_preferences.pm b/lib/NGCP/Schema/Result/contract_fraud_preferences.pm index 2e9777de..46e6bc69 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contract_registers.pm b/lib/NGCP/Schema/Result/contract_registers.pm index 0c39e5a4..ed0d33ad 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/contracts.pm b/lib/NGCP/Schema/Result/contracts.pm index e6766852..5414f377 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/credit_payments.pm b/lib/NGCP/Schema/Result/credit_payments.pm index 9fbfcea9..a3823ff5 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/credits.pm b/lib/NGCP/Schema/Result/credits.pm index b81aa14e..0e254ffc 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/customer_registers.pm b/lib/NGCP/Schema/Result/customer_registers.pm index 82bcbad2..f6b852e9 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/customers.pm b/lib/NGCP/Schema/Result/customers.pm index 0302cf91..b3da0ade 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/db_schema.pm b/lib/NGCP/Schema/Result/db_schema.pm index 292cc497..6e07611b 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dbaliases.pm b/lib/NGCP/Schema/Result/dbaliases.pm index 74c96500..9c4413c4 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dialog.pm b/lib/NGCP/Schema/Result/dialog.pm index f373353d..ab821122 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dialog_vars.pm b/lib/NGCP/Schema/Result/dialog_vars.pm index a9105a49..bea1ab52 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dialplan.pm b/lib/NGCP/Schema/Result/dialplan.pm index b06e6d36..7dc48384 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dispatcher.pm b/lib/NGCP/Schema/Result/dispatcher.pm index 0262c742..e3942ead 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/dom_preferences.pm b/lib/NGCP/Schema/Result/dom_preferences.pm index d8291676..32499e2d 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/domain.pm b/lib/NGCP/Schema/Result/domain.pm index eebbefae..76d03a4c 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/domain_attrs.pm b/lib/NGCP/Schema/Result/domain_attrs.pm index 38456dfd..9d44f8db 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/domain_resellers.pm b/lib/NGCP/Schema/Result/domain_resellers.pm index 6f85e8bb..ea560f68 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/domains.pm b/lib/NGCP/Schema/Result/domains.pm index 23a39c90..1f97821b 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/fax_destinations.pm b/lib/NGCP/Schema/Result/fax_destinations.pm index 6e85e460..6b120372 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/fax_journal.pm b/lib/NGCP/Schema/Result/fax_journal.pm index 7f2913c7..d21db05d 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/fax_preferences.pm b/lib/NGCP/Schema/Result/fax_preferences.pm index 60b9d201..c4536b4f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/htable.pm b/lib/NGCP/Schema/Result/htable.pm index 6c0406f7..b9bb845c 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/interceptions.pm b/lib/NGCP/Schema/Result/interceptions.pm index 3865154c..8d98d65f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/invoices.pm b/lib/NGCP/Schema/Result/invoices.pm index 272baa00..ad9add5d 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/kamailio_acc.pm b/lib/NGCP/Schema/Result/kamailio_acc.pm index 250b1859..9fdd1db4 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/kamailio_acc_backup.pm b/lib/NGCP/Schema/Result/kamailio_acc_backup.pm index 1bcbbe3c..774d0fd4 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/kamailio_acc_trash.pm b/lib/NGCP/Schema/Result/kamailio_acc_trash.pm index ed9ac775..302f6687 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/language_strings.pm b/lib/NGCP/Schema/Result/language_strings.pm index 22776c7a..c1416967 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/lcr_gw.pm b/lib/NGCP/Schema/Result/lcr_gw.pm index 03d8552f..8f1b9f09 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/lcr_rule.pm b/lib/NGCP/Schema/Result/lcr_rule.pm index 14c579d0..ca1d8b71 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/lcr_rule_target.pm b/lib/NGCP/Schema/Result/lcr_rule_target.pm index 90a3ab34..2af342e0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/lnp_numbers.pm b/lib/NGCP/Schema/Result/lnp_numbers.pm index 67778d4b..91bed984 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/lnp_providers.pm b/lib/NGCP/Schema/Result/lnp_providers.pm index 85caf053..4de7fcae 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/location.pm b/lib/NGCP/Schema/Result/location.pm index 336cd11b..49957106 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/location_attrs.pm b/lib/NGCP/Schema/Result/location_attrs.pm index f895e9fb..b8ce3771 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/mark.pm b/lib/NGCP/Schema/Result/mark.pm index ed4c46ad..ebcdc2ea 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/message_packets.pm b/lib/NGCP/Schema/Result/message_packets.pm index 0607e15a..8e32a6e3 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/messages.pm b/lib/NGCP/Schema/Result/messages.pm index b47138f5..94d1c14e 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/mobile_push_registrations.pm b/lib/NGCP/Schema/Result/mobile_push_registrations.pm index 6b9eb69e..5f403076 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/ncos_levels.pm b/lib/NGCP/Schema/Result/ncos_levels.pm index 3629a72a..72c53dd7 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/ncos_lnp_list.pm b/lib/NGCP/Schema/Result/ncos_lnp_list.pm index 53ea646e..28eee4c9 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/ncos_pattern_list.pm b/lib/NGCP/Schema/Result/ncos_pattern_list.pm index 36e84e48..53c0ffdd 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/numbers.pm b/lib/NGCP/Schema/Result/numbers.pm index dbd528ff..1f6962b0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/order_payments.pm b/lib/NGCP/Schema/Result/order_payments.pm index 1f7df4a3..344b1167 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/orders.pm b/lib/NGCP/Schema/Result/orders.pm index 60806a72..4b6a0430 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/packets.pm b/lib/NGCP/Schema/Result/packets.pm index 8d44272a..4a557a00 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/payments.pm b/lib/NGCP/Schema/Result/payments.pm index b71bdbb8..f658dc52 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/peer_preferences.pm b/lib/NGCP/Schema/Result/peer_preferences.pm index 943f1bcc..0e99baae 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/prepaid_costs.pm b/lib/NGCP/Schema/Result/prepaid_costs.pm index b15dd078..c8946923 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/presentity.pm b/lib/NGCP/Schema/Result/presentity.pm index e043fd6b..ad4449bf 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/products.pm b/lib/NGCP/Schema/Result/products.pm index 33cd6fe2..9ec80dff 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm b/lib/NGCP/Schema/Result/provisioning_voip_subscribers.pm index aef57c2e..d560c2fd 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/pua.pm b/lib/NGCP/Schema/Result/pua.pm index 12d5feff..71ae996a 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/resellers.pm b/lib/NGCP/Schema/Result/resellers.pm index 98cd90fd..86362d28 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/rls_presentity.pm b/lib/NGCP/Schema/Result/rls_presentity.pm index dadc714e..ffefee60 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/rls_watchers.pm b/lib/NGCP/Schema/Result/rls_watchers.pm index 904957e7..05652012 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/sca_subscriptions.pm b/lib/NGCP/Schema/Result/sca_subscriptions.pm index 0069a890..25364f31 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/sems_registrations.pm b/lib/NGCP/Schema/Result/sems_registrations.pm index b12abde9..ee804de7 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/silo.pm b/lib/NGCP/Schema/Result/silo.pm index 5335fddb..6295ad30 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/sipstats_mark.pm b/lib/NGCP/Schema/Result/sipstats_mark.pm index 6532e1d9..79acc3f0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/speed_dial.pm b/lib/NGCP/Schema/Result/speed_dial.pm index 4b718bc5..19efb537 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/statistics.pm b/lib/NGCP/Schema/Result/statistics.pm index d1766421..53388739 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/subscriber.pm b/lib/NGCP/Schema/Result/subscriber.pm index f1da010c..66be501f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/subscribers.pm b/lib/NGCP/Schema/Result/subscribers.pm index 7475cf14..48a4acf2 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/trusted.pm b/lib/NGCP/Schema/Result/trusted.pm index e9100b79..da70d2d3 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_credentials.pm b/lib/NGCP/Schema/Result/uid_credentials.pm index a4eda409..341b973c 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_domain.pm b/lib/NGCP/Schema/Result/uid_domain.pm index b89ab99e..f65643f1 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_domain_attrs.pm b/lib/NGCP/Schema/Result/uid_domain_attrs.pm index 9836c79b..9a9b1cc7 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_global_attrs.pm b/lib/NGCP/Schema/Result/uid_global_attrs.pm index 470c6d24..47a28611 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_uri.pm b/lib/NGCP/Schema/Result/uid_uri.pm index 7b51421e..c26ef1e5 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_uri_attrs.pm b/lib/NGCP/Schema/Result/uid_uri_attrs.pm index f524ad0b..d16796f3 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/uid_user_attrs.pm b/lib/NGCP/Schema/Result/uid_user_attrs.pm index c828e569..dd8e47aa 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/usr_preferences.pm b/lib/NGCP/Schema/Result/usr_preferences.pm index a188d509..66572414 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/version.pm b/lib/NGCP/Schema/Result/version.pm index 51ee2d2a..ae71b074 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voicemail_spool.pm b/lib/NGCP/Schema/Result/voicemail_spool.pm index 45dbe394..3a80deef 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voicemail_users.pm b/lib/NGCP/Schema/Result/voicemail_users.pm index b47b739e..dd093600 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_aig_sequence.pm b/lib/NGCP/Schema/Result/voip_aig_sequence.pm index 51c876ea..d0e5750f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm b/lib/NGCP/Schema/Result/voip_allowed_ip_groups.pm index e9083763..ffe894f8 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cc_mappings.pm b/lib/NGCP/Schema/Result/voip_cc_mappings.pm index a10e45fc..3bfd4e7e 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm b/lib/NGCP/Schema/Result/voip_cf_destination_sets.pm index 53b97cf5..69ea6fb4 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cf_destinations.pm b/lib/NGCP/Schema/Result/voip_cf_destinations.pm index 03c66c00..8bfa57d0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cf_mappings.pm b/lib/NGCP/Schema/Result/voip_cf_mappings.pm index 9d3d53e7..14941510 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cf_periods.pm b/lib/NGCP/Schema/Result/voip_cf_periods.pm index aed44c83..58cde8c1 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_cf_time_sets.pm b/lib/NGCP/Schema/Result/voip_cf_time_sets.pm index ec7825b6..76310b13 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_contacts.pm b/lib/NGCP/Schema/Result/voip_contacts.pm index 9f0ab8b8..ecaea1c0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_dbaliases.pm b/lib/NGCP/Schema/Result/voip_dbaliases.pm index 66eafd2e..7aad895f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_dom_preferences.pm b/lib/NGCP/Schema/Result/voip_dom_preferences.pm index 0a4e2e2d..b14015bf 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_domains.pm b/lib/NGCP/Schema/Result/voip_domains.pm index 59b7d154..ae2744ac 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_fax_destinations.pm b/lib/NGCP/Schema/Result/voip_fax_destinations.pm index 4f426a80..0baa31ed 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_fax_preferences.pm b/lib/NGCP/Schema/Result/voip_fax_preferences.pm index 89fb690c..782f3f2d 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_intercept.pm b/lib/NGCP/Schema/Result/voip_intercept.pm index 051ba1d0..fa3ea754 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_number_block_resellers.pm b/lib/NGCP/Schema/Result/voip_number_block_resellers.pm index 4940cd6a..e3b56108 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_number_blocks.pm b/lib/NGCP/Schema/Result/voip_number_blocks.pm index a12f30f0..cf05e2c9 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_numbers.pm b/lib/NGCP/Schema/Result/voip_numbers.pm index 93cbfcf5..fb542b7f 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_peer_groups.pm b/lib/NGCP/Schema/Result/voip_peer_groups.pm index 84df12af..f678c974 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_peer_hosts.pm b/lib/NGCP/Schema/Result/voip_peer_hosts.pm index a8207215..ac533fa1 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_peer_preferences.pm b/lib/NGCP/Schema/Result/voip_peer_preferences.pm index 72117113..c5f0b723 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_peer_rules.pm b/lib/NGCP/Schema/Result/voip_peer_rules.pm index e1a69b4e..bac32c20 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_preference_groups.pm b/lib/NGCP/Schema/Result/voip_preference_groups.pm index e71c2fe3..4a066941 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_preferences.pm b/lib/NGCP/Schema/Result/voip_preferences.pm index c75a5161..597640bd 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_preferences_enum.pm b/lib/NGCP/Schema/Result/voip_preferences_enum.pm index db8e4b1a..f8eb70d0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_reminder.pm b/lib/NGCP/Schema/Result/voip_reminder.pm index 522914c8..3e095948 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm b/lib/NGCP/Schema/Result/voip_rewrite_rule_sets.pm index f21e2888..43810920 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_rewrite_rules.pm b/lib/NGCP/Schema/Result/voip_rewrite_rules.pm index 96b5082a..ad83dc71 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm b/lib/NGCP/Schema/Result/voip_rwrs_sequence.pm index f5b71118..8188ec64 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_sound_files.pm b/lib/NGCP/Schema/Result/voip_sound_files.pm index fbca9c2c..6e864a94 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_sound_groups.pm b/lib/NGCP/Schema/Result/voip_sound_groups.pm index df077642..ead0b9f9 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_sound_handles.pm b/lib/NGCP/Schema/Result/voip_sound_handles.pm index 7cb78634..f78291bf 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_sound_sets.pm b/lib/NGCP/Schema/Result/voip_sound_sets.pm index 52f8aa7b..1d6275bb 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_speed_dial.pm b/lib/NGCP/Schema/Result/voip_speed_dial.pm index b2247c38..61fac208 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_subscribers.pm b/lib/NGCP/Schema/Result/voip_subscribers.pm index 5a675185..f5173ae9 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_trusted_sources.pm b/lib/NGCP/Schema/Result/voip_trusted_sources.pm index 1fea3008..c4aac7f0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_usr_preferences.pm b/lib/NGCP/Schema/Result/voip_usr_preferences.pm index a4a868f0..7d1069c4 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/watchers.pm b/lib/NGCP/Schema/Result/watchers.pm index 68610818..1f56437b 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/xcap.pm b/lib/NGCP/Schema/Result/xcap.pm index 873cac6f..bb05c076 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/xmlgroups.pm b/lib/NGCP/Schema/Result/xmlgroups.pm index 10670b57..8812a088 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/xmlhostgroups.pm b/lib/NGCP/Schema/Result/xmlhostgroups.pm index 9aff4c54..fd6d35f0 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/xmlhosts.pm b/lib/NGCP/Schema/Result/xmlhosts.pm index 69afa06e..1ba31de2 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/xmlqueue.pm b/lib/NGCP/Schema/Result/xmlqueue.pm index 68c8595e..6f340857 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 Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.001'; +our $VERSION = '2.002'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/ResultSet.pm b/lib/NGCP/Schema/ResultSet.pm index 4b9b2960..e30f6c77 100644 --- a/lib/NGCP/Schema/ResultSet.pm +++ b/lib/NGCP/Schema/ResultSet.pm @@ -2,6 +2,6 @@ package NGCP::Schema::ResultSet; use Sipwise::Base; extends 'DBIx::Class::ResultSet'; -our $VERSION = '2.001'; +our $VERSION = '2.002'; __PACKAGE__->load_components('Helper::ResultSet');