diff --git a/Changes b/Changes index f8205225..2154720a 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,10 @@ Changes - Revision history for NGCP-Schema +=head2 2.004 2013-08-06 + +deflate messages timestamp to micro precision + =head2 2.003 2013-08-02 relicense GPL3+ diff --git a/README b/README index f678b05b..250b9211 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ =encoding UTF-8 -NGCP-Schema version 2.003 +NGCP-Schema version 2.004 =head1 NAME diff --git a/debian/changelog b/debian/changelog index 75158caf..5b8fd208 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +ngcp-schema (2.004) unstable; urgency=low + + * deflate messages timestamp to micro precision + + -- Lars Dieckow Tue, 06 Aug 2013 15:55:14 +0200 + ngcp-schema (2.003) unstable; urgency=low * relicense GPL3+ diff --git a/lib/NGCP/Schema.pm b/lib/NGCP/Schema.pm index 9b4ce4e2..6d104646 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.003'; +our $VERSION = '2.004'; __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.003 +This document describes NGCP::Schema version 2.004 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Config.pm b/lib/NGCP/Schema/Config.pm index 7161b31a..19e7ef16 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.003'; +our $VERSION = '2.004'; 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.003 +This document describes NGCP::Schema::Config version 2.004 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Exception.pm b/lib/NGCP/Schema/Exception.pm index 7d97322f..fa345bdb 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.003'; +our $VERSION = '2.004'; 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.003 +This document describes NGCP::Schema::Exception version 2.004 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm index f30f6d0c..9a4f7a35 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.003'; +our $VERSION = '2.004'; __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 1db03343..82438c73 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.003'; +our $VERSION = '2.004'; __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 3ef0546a..188483e0 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.003'; +our $VERSION = '2.004'; __PACKAGE__->load_components( qw( InflateColumn::DateTime ) ); diff --git a/lib/NGCP/Schema/Result/acc.pm b/lib/NGCP/Schema/Result/acc.pm index 69aafce9..cbe5555d 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.003'; +our $VERSION = '2.004'; # 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 b78cc867..ea4d7059 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.003'; +our $VERSION = '2.004'; # 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 b8af1608..74a24c2c 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.003'; +our $VERSION = '2.004'; # 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 31bf5d26..1b0b595a 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.003'; +our $VERSION = '2.004'; # 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 cd94e0eb..aa346770 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.003'; +our $VERSION = '2.004'; # 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 696bcc48..970631d6 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.003'; +our $VERSION = '2.004'; # 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 f5a9e28f..a5c9010b 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.003'; +our $VERSION = '2.004'; # 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 efb42f5a..ce3e4734 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.003'; +our $VERSION = '2.004'; # 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 727e6623..52f36087 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.003'; +our $VERSION = '2.004'; # 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 173902ff..99311b1d 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.003'; +our $VERSION = '2.004'; # 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 de92c873..e2a664f3 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.003'; +our $VERSION = '2.004'; # 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 543d3f43..73e2f1cc 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.003'; +our $VERSION = '2.004'; # 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 15f0f04f..9ddd0ca0 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.003'; +our $VERSION = '2.004'; # 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 6354b5e8..248dfb26 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.003'; +our $VERSION = '2.004'; # 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 0a342847..e4c6c1ad 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.003'; +our $VERSION = '2.004'; # 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 e5cd9433..eda0ebce 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.003'; +our $VERSION = '2.004'; # 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 e6d8f610..31dcfb38 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.003'; +our $VERSION = '2.004'; # 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 7e8a40af..db7e65bc 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.003'; +our $VERSION = '2.004'; # 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 e3d2e26d..49a7f897 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.003'; +our $VERSION = '2.004'; # 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 702d24f6..75fa2346 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.003'; +our $VERSION = '2.004'; # 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 8beead0c..23c242a1 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.003'; +our $VERSION = '2.004'; # 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 3f447efc..7b60410e 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.003'; +our $VERSION = '2.004'; # 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 3e2d9b52..54bb23ef 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.003'; +our $VERSION = '2.004'; # 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 d1c422fe..4e0e7363 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.003'; +our $VERSION = '2.004'; # 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 80739cb6..457f8ad8 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.003'; +our $VERSION = '2.004'; # 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 eb9fcbc6..40f7aaa2 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.003'; +our $VERSION = '2.004'; # 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 ad4cb69a..f470f283 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.003'; +our $VERSION = '2.004'; # 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 5e31cd77..d5f810a5 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.003'; +our $VERSION = '2.004'; # 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 fd6f1924..fefe2f3d 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.003'; +our $VERSION = '2.004'; # 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 95cd8d6a..d1710508 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.003'; +our $VERSION = '2.004'; # 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 3d80ea58..bf5123f5 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.003'; +our $VERSION = '2.004'; # 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 3a3751c7..e39718b5 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.003'; +our $VERSION = '2.004'; # 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 d9238633..718b741f 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.003'; +our $VERSION = '2.004'; # 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 aac14137..44de78a9 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.003'; +our $VERSION = '2.004'; # 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 c8352535..7b21d908 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.003'; +our $VERSION = '2.004'; # 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 5428fba9..1d5bb709 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.003'; +our $VERSION = '2.004'; # 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 16df69da..233af637 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.003'; +our $VERSION = '2.004'; # 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 56ee178a..38aeba2f 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.003'; +our $VERSION = '2.004'; # 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 5fe7289d..af6b38b9 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.003'; +our $VERSION = '2.004'; # 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 2d8185cf..a9a09ebd 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.003'; +our $VERSION = '2.004'; # 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 c1d096fd..cebae2f8 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.003'; +our $VERSION = '2.004'; # 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 3dfa1b5a..f5443fdc 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.003'; +our $VERSION = '2.004'; # 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 e4d21da7..87efee2d 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.003'; +our $VERSION = '2.004'; # 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 5a363088..8f8f1f29 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.003'; +our $VERSION = '2.004'; # 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 e132456f..8fe6096e 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.003'; +our $VERSION = '2.004'; # 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 aeaa9fc7..7d82f3bd 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.003'; +our $VERSION = '2.004'; # 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 243f6b11..93d9df85 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.003'; +our $VERSION = '2.004'; # 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 a2ce89a4..9fc50ed8 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.003'; +our $VERSION = '2.004'; # 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 478f429b..c7355ac6 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.003'; +our $VERSION = '2.004'; # 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 3065dcd1..ea809f48 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.003'; +our $VERSION = '2.004'; # 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 6787b2a0..453672d3 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.003'; +our $VERSION = '2.004'; # 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 6ae2683b..679b91ed 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.003'; +our $VERSION = '2.004'; # 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 8bdde11b..8679a4d1 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.003'; +our $VERSION = '2.004'; # 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 af8f783d..1abd2a25 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.003'; +our $VERSION = '2.004'; # 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 cc34451e..403808b5 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.003'; +our $VERSION = '2.004'; # 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 dbef2961..ad8a5157 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.003'; +our $VERSION = '2.004'; # 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 14312b7d..f0f2ea54 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.003'; +our $VERSION = '2.004'; # 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 aeaeb98c..b46dd3d0 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.003'; +our $VERSION = '2.004'; # 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 3ef4f1a1..8b5a44ce 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.003'; +our $VERSION = '2.004'; # 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 9bf9d83f..a1dd06b8 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.003'; +our $VERSION = '2.004'; # 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 5dc8107a..d265c54b 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.003'; +our $VERSION = '2.004'; # 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 5694c230..abf08714 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.003'; +our $VERSION = '2.004'; # 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 1f69aa91..95b4d980 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.003'; +our $VERSION = '2.004'; # 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 818be982..318ae96f 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.003'; +our $VERSION = '2.004'; # 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 34b8d697..2ccd7c8c 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.003'; +our $VERSION = '2.004'; # 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 3190397b..06ea0914 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.003'; +our $VERSION = '2.004'; # 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 7656add1..f8abc496 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.003'; +our $VERSION = '2.004'; # 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 ba0a5018..639e24f5 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.003'; +our $VERSION = '2.004'; # 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 843f1467..87afc9dc 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.003'; +our $VERSION = '2.004'; # 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 05aa4feb..e087b9c5 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.003'; +our $VERSION = '2.004'; # 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 f7fa9fe2..c741e03a 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.003'; +our $VERSION = '2.004'; # 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 66c7d96b..a64e0295 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.003'; +our $VERSION = '2.004'; # 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 140eeedf..87cfc73d 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.003'; +our $VERSION = '2.004'; # 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 df366018..d13c2407 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.003'; +our $VERSION = '2.004'; # 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 67faa0fb..3b8ecab5 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.003'; +our $VERSION = '2.004'; # 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 db3d9aed..c6fd0e4d 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.003'; +our $VERSION = '2.004'; # 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 1163efe2..096c2231 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.003'; +our $VERSION = '2.004'; # 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 f598afb8..22f7f2eb 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.003'; +our $VERSION = '2.004'; # 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 2401ead1..42b285ce 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.003'; +our $VERSION = '2.004'; # 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 29493b2e..0aa6e139 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.003'; +our $VERSION = '2.004'; # 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 15cb79a5..5990d947 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.003'; +our $VERSION = '2.004'; # 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 5d8c7593..cee7a811 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.003'; +our $VERSION = '2.004'; # 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 3d34f731..fe064901 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.003'; +our $VERSION = '2.004'; # 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 31b539eb..f8423354 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.003'; +our $VERSION = '2.004'; # 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 d8229b06..07f36777 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.003'; +our $VERSION = '2.004'; # 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 ea8833a5..fb17f037 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.003'; +our $VERSION = '2.004'; # 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 d7dbf6b0..732d54bd 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.003'; +our $VERSION = '2.004'; # 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 f436b706..57406af1 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.003'; +our $VERSION = '2.004'; # 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 b50bc727..4d806331 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.003'; +our $VERSION = '2.004'; # 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 0d51631b..7217be8c 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.003'; +our $VERSION = '2.004'; # 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 1c46d7a2..291baeb0 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.003'; +our $VERSION = '2.004'; # 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 36ffe258..6a8a5887 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.003'; +our $VERSION = '2.004'; # 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 d9724534..744fce78 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.003'; +our $VERSION = '2.004'; # 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 6f0a0e2d..caab504d 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.003'; +our $VERSION = '2.004'; # 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 ffc79654..8f80087f 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.003'; +our $VERSION = '2.004'; # 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 5cd5fd8b..40ffe43b 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.003'; +our $VERSION = '2.004'; # 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 7acb3cf1..45e033b0 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.003'; +our $VERSION = '2.004'; # 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 800140f4..a1ef0bf6 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.003'; +our $VERSION = '2.004'; # 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 394d5fd8..af7a0e1e 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.003'; +our $VERSION = '2.004'; # 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 67fdfe39..d978ed3f 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.003'; +our $VERSION = '2.004'; # 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 d8dfadf6..1b0d4a3e 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.003'; +our $VERSION = '2.004'; # 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 bf2f4677..a57ae92e 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.003'; +our $VERSION = '2.004'; # 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 b7c1df8d..4196cc1d 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.003'; +our $VERSION = '2.004'; # 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 c50f6ffe..d11a214c 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.003'; +our $VERSION = '2.004'; # 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 1051f9ba..df86b948 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.003'; +our $VERSION = '2.004'; # 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 b870664f..b05148bc 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.003'; +our $VERSION = '2.004'; # 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 026c8c4d..edd41bbd 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.003'; +our $VERSION = '2.004'; # 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 ce3efcbf..ef9abe12 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.003'; +our $VERSION = '2.004'; # 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 060a20c4..438b5442 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.003'; +our $VERSION = '2.004'; # 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 d4042fc1..4002921f 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.003'; +our $VERSION = '2.004'; # 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 fc8e630b..72cd44bb 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.003'; +our $VERSION = '2.004'; # 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 9f037585..b063f9a6 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.003'; +our $VERSION = '2.004'; # 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 6d44b93a..666f9634 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.003'; +our $VERSION = '2.004'; # 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 a2b3b8ab..dbc0a6c2 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.003'; +our $VERSION = '2.004'; # 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 231cc240..f5aadefc 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.003'; +our $VERSION = '2.004'; # 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 7062b012..866a59d8 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.003'; +our $VERSION = '2.004'; # 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 e03b3991..5d044c19 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.003'; +our $VERSION = '2.004'; # 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 45623676..c9560d93 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.003'; +our $VERSION = '2.004'; # 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 07b8cda8..28fa433d 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.003'; +our $VERSION = '2.004'; # 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 a4561caa..3d013722 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.003'; +our $VERSION = '2.004'; # 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 54222cda..f1ca3cff 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.003'; +our $VERSION = '2.004'; # 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 cc8bad51..e326b2bb 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.003'; +our $VERSION = '2.004'; # 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 21b5cfc4..683ef405 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.003'; +our $VERSION = '2.004'; # 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 ff359cda..90c6382c 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.003'; +our $VERSION = '2.004'; # 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 4dbf6785..00eda168 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.003'; +our $VERSION = '2.004'; # 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 b0c4c3f8..6347aecc 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.003'; +our $VERSION = '2.004'; # 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 357a7e18..037ef50d 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.003'; +our $VERSION = '2.004'; # 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 23a1275c..958c3f57 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.003'; +our $VERSION = '2.004'; # 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 61080c53..7eeede83 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.003'; +our $VERSION = '2.004'; # 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 f8fcc3c2..cddb4fc2 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.003'; +our $VERSION = '2.004'; # 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 fa013146..6a9f5adf 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.003'; +our $VERSION = '2.004'; # 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 5262aaa9..9678465c 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.003'; +our $VERSION = '2.004'; # 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 b25940c2..1fc07bd4 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.003'; +our $VERSION = '2.004'; # 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 6adada18..767e6228 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.003'; +our $VERSION = '2.004'; # 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 c8d3a5ba..99bac099 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.003'; +our $VERSION = '2.004'; # 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 23f8fa2a..085cee6e 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.003'; +our $VERSION = '2.004'; # 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 f9da024d..39f91cff 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.003'; +our $VERSION = '2.004'; # 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 3475e656..3a3c459a 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.003'; +our $VERSION = '2.004'; # 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 6970a48e..9a10e98d 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.003'; +our $VERSION = '2.004'; # 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 405752c6..bd47d899 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.003'; +our $VERSION = '2.004'; # 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 052af4c6..574c80e6 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.003'; +our $VERSION = '2.004'; # 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 35e3dab2..bc7a44c3 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.003'; +our $VERSION = '2.004'; # 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 4cf16ab8..3330726b 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.003'; +our $VERSION = '2.004'; # 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 d96488d8..0661633d 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.003'; +our $VERSION = '2.004'; __PACKAGE__->load_components('Helper::ResultSet');