diff --git a/Changes b/Changes index 1113673c..38f0f214 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,14 @@ Changes - Revision history for NGCP-Schema +=head2 2.006 2013-09-20 + +=over + +=item Add pbx device autoprovisioning tables. + +=back + =head2 2.005 2013-09-11 =over diff --git a/README b/README index 15159bce..f46ddb1c 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ =encoding UTF-8 -NGCP-Schema version 2.005 +NGCP-Schema version 2.006 =head1 NAME diff --git a/debian/changelog b/debian/changelog index 674bda92..14fe30b3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +ngcp-schema (2.006) unstable; urgency=low + + * [73bd5d8] Add PBX autoprovisioning tables. + * [049c0e5] Add PBX device sync fields. + * [1c92e2c] Add PBX device security flags. + + -- Andreas Granig Fri, 20 Sep 2013 11:46:24 +0200 + ngcp-schema (2.005) unstable; urgency=low * Add pbx group table and pbx related fields/rels diff --git a/lib/NGCP/Schema.pm b/lib/NGCP/Schema.pm index d1bd42f2..dea9f9d1 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.005'; +our $VERSION = '2.006'; __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.005 +This document describes NGCP::Schema version 2.006 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Config.pm b/lib/NGCP/Schema/Config.pm index 849ae0a3..666c0301 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.005'; +our $VERSION = '2.006'; 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.005 +This document describes NGCP::Schema::Config version 2.006 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/Exception.pm b/lib/NGCP/Schema/Exception.pm index 2576f441..ecbb3464 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.005'; +our $VERSION = '2.006'; 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.005 +This document describes NGCP::Schema::Exception version 2.006 =head1 SYNOPSIS diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm index d9d42ddc..69ee6411 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.005'; +our $VERSION = '2.006'; __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 ef27ba1a..c588214c 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.005'; +our $VERSION = '2.006'; __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 4f6958ae..dbc39736 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.005'; +our $VERSION = '2.006'; __PACKAGE__->load_components( qw( InflateColumn::DateTime ) ); diff --git a/lib/NGCP/Schema/Result/acc.pm b/lib/NGCP/Schema/Result/acc.pm index 1e2e4047..d1122fbc 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.005'; +our $VERSION = '2.006'; # 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 3aeea697..4e74f3ce 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.005'; +our $VERSION = '2.006'; # 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 d6986dff..12850255 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.005'; +our $VERSION = '2.006'; # 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 3d368c04..598712b0 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.005'; +our $VERSION = '2.006'; # 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 6b72ada8..0d9e61d6 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.005'; +our $VERSION = '2.006'; # 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 8cea70bf..57f75de8 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.005'; +our $VERSION = '2.006'; # 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 953a32f4..78e34fa6 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.005'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/autoprov_configs.pm b/lib/NGCP/Schema/Result/autoprov_configs.pm index 891c4d58..53cd507f 100644 --- a/lib/NGCP/Schema/Result/autoprov_configs.pm +++ b/lib/NGCP/Schema/Result/autoprov_configs.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_configs; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.004'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/autoprov_devices.pm b/lib/NGCP/Schema/Result/autoprov_devices.pm index 1f2484d0..4d49f3f5 100644 --- a/lib/NGCP/Schema/Result/autoprov_devices.pm +++ b/lib/NGCP/Schema/Result/autoprov_devices.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_devices; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.004'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/autoprov_field_devices.pm b/lib/NGCP/Schema/Result/autoprov_field_devices.pm index 97c88610..8618fc03 100644 --- a/lib/NGCP/Schema/Result/autoprov_field_devices.pm +++ b/lib/NGCP/Schema/Result/autoprov_field_devices.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_field_devices; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.004'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/autoprov_firmwares.pm b/lib/NGCP/Schema/Result/autoprov_firmwares.pm index 19a59933..650b4186 100644 --- a/lib/NGCP/Schema/Result/autoprov_firmwares.pm +++ b/lib/NGCP/Schema/Result/autoprov_firmwares.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_firmwares; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.004'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/autoprov_profiles.pm b/lib/NGCP/Schema/Result/autoprov_profiles.pm index 34fdce90..db89538e 100644 --- a/lib/NGCP/Schema/Result/autoprov_profiles.pm +++ b/lib/NGCP/Schema/Result/autoprov_profiles.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::autoprov_profiles; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.004'; +our $VERSION = '2.006'; # 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 30e01ecd..4a595799 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.005'; +our $VERSION = '2.006'; # 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 27c34833..d61b073a 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.005'; +our $VERSION = '2.006'; # 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 3e477015..4fb20d69 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.005'; +our $VERSION = '2.006'; # 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 191e7f3a..a179311a 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.005'; +our $VERSION = '2.006'; # 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 02d302fe..245f9621 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.005'; +our $VERSION = '2.006'; # 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 d8af5f53..3bf5e2cc 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.005'; +our $VERSION = '2.006'; # 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 9a8f7ae2..379189be 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.005'; +our $VERSION = '2.006'; # 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 688af37a..ccc576ca 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.005'; +our $VERSION = '2.006'; # 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 dae3ef53..d8f7edb6 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.005'; +our $VERSION = '2.006'; # 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 b8d7ab58..f0b40aee 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.005'; +our $VERSION = '2.006'; # 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 26e6ba6e..a00d281a 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.005'; +our $VERSION = '2.006'; # 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 d312af03..48290af9 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.005'; +our $VERSION = '2.006'; # 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 ab1ea294..e6d5a924 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.005'; +our $VERSION = '2.006'; # 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 26a3057b..208dd75b 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.005'; +our $VERSION = '2.006'; # 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 a3924132..2efd1bfb 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.005'; +our $VERSION = '2.006'; # 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 ea669d62..b403461c 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.005'; +our $VERSION = '2.006'; # 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 d1c039cc..1824ad4b 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.005'; +our $VERSION = '2.006'; # 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 7c110ba6..28e38f74 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.005'; +our $VERSION = '2.006'; # 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 eac635f6..29d3425e 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.005'; +our $VERSION = '2.006'; # 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 b1d8fc43..1868dabf 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.005'; +our $VERSION = '2.006'; # 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 4b8d9bda..cbfb6473 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.005'; +our $VERSION = '2.006'; # 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 69f62177..4158e788 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.005'; +our $VERSION = '2.006'; # 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 04ed9306..3cbcfc5d 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.005'; +our $VERSION = '2.006'; # 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 f6a5a568..18a31fa4 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.005'; +our $VERSION = '2.006'; # 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 45faab42..a88ec09a 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.005'; +our $VERSION = '2.006'; # 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 33af9f8e..94738b86 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.005'; +our $VERSION = '2.006'; # 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 8203d70c..4eab97d5 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.005'; +our $VERSION = '2.006'; # 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 604b4391..2ffb4be2 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.005'; +our $VERSION = '2.006'; # 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 cda0ee9f..114342bf 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.005'; +our $VERSION = '2.006'; # 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 a51411c0..e2af5e7d 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.005'; +our $VERSION = '2.006'; # 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 c54b916d..c28755d0 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.005'; +our $VERSION = '2.006'; # 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 a62bc290..82a184c3 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.005'; +our $VERSION = '2.006'; # 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 4a7e17ce..c65a7699 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.005'; +our $VERSION = '2.006'; # 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 224eac07..3ab5b0e9 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.005'; +our $VERSION = '2.006'; # 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 99aec126..c5badbfb 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.005'; +our $VERSION = '2.006'; # 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 fa00faef..8fc07b97 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.005'; +our $VERSION = '2.006'; # 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 f49a9627..c40228c4 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.005'; +our $VERSION = '2.006'; # 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 6be24f7a..78c70776 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.005'; +our $VERSION = '2.006'; # 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 a59ce020..8b73d1b0 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.005'; +our $VERSION = '2.006'; # 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 de1bcb3f..0ba46eee 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.005'; +our $VERSION = '2.006'; # 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 4ae9add8..ceee1d23 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.005'; +our $VERSION = '2.006'; # 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 6482e531..d84dcb3c 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.005'; +our $VERSION = '2.006'; # 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 cc219401..b6b0eb4f 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.005'; +our $VERSION = '2.006'; # 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 151fae35..4eac6762 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.005'; +our $VERSION = '2.006'; # 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 dff0979f..332da5fb 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.005'; +our $VERSION = '2.006'; # 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 14b62664..c7699b4e 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.005'; +our $VERSION = '2.006'; # 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 e92a03f5..edba51fe 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.005'; +our $VERSION = '2.006'; # 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 c0d6832e..d294d160 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.005'; +our $VERSION = '2.006'; # 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 5116847a..a2e437ce 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.005'; +our $VERSION = '2.006'; # 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 ef64b61e..28b86438 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.005'; +our $VERSION = '2.006'; # 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 51e367bd..c7c0ea57 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.005'; +our $VERSION = '2.006'; # 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 ac838782..698d8a19 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.005'; +our $VERSION = '2.006'; # 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 a61d09bb..72b83522 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.005'; +our $VERSION = '2.006'; # 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 11787618..8fd7e305 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.005'; +our $VERSION = '2.006'; # 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 5380b5c5..9c0543a8 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.005'; +our $VERSION = '2.006'; # 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 f7c51518..7bfafd40 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.005'; +our $VERSION = '2.006'; # 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 8a426d42..8507807d 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.005'; +our $VERSION = '2.006'; # 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 203c99dc..e50a934c 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.005'; +our $VERSION = '2.006'; # 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 13cf80f8..6863b025 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.005'; +our $VERSION = '2.006'; # 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 7abfceef..755fab77 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.005'; +our $VERSION = '2.006'; # 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 b9c7c29d..37be789b 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.005'; +our $VERSION = '2.006'; # 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 0d8a8c1a..8d27fb15 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.005'; +our $VERSION = '2.006'; # 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 01f1a169..f49c258c 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.005'; +our $VERSION = '2.006'; # 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 2477bbfb..a6fc1a4f 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.005'; +our $VERSION = '2.006'; # 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 52d94d58..e0f6dac0 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.005'; +our $VERSION = '2.006'; # 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 c3953f72..e0e73aeb 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.005'; +our $VERSION = '2.006'; # 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 2581c457..f994d611 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.005'; +our $VERSION = '2.006'; # 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 b94068da..f132dfee 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.005'; +our $VERSION = '2.006'; # 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 da970e9d..b0563102 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.005'; +our $VERSION = '2.006'; # 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 814807a1..6f9e1ac4 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.005'; +our $VERSION = '2.006'; # 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 fbd53c22..06f1f4bf 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.005'; +our $VERSION = '2.006'; # 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 ed77a8a0..ae13ba19 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.005'; +our $VERSION = '2.006'; # 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 57bad80a..2db12462 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.005'; +our $VERSION = '2.006'; # 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 de9cac24..449a4c9f 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.005'; +our $VERSION = '2.006'; # 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 f4123368..c0746065 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.005'; +our $VERSION = '2.006'; # 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 4ec5bab9..024262c7 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.005'; +our $VERSION = '2.006'; # 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 494ff1bc..9c44dbb9 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.005'; +our $VERSION = '2.006'; # 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 047a8508..f1a2610b 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.005'; +our $VERSION = '2.006'; # 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 22e7cbad..be21217d 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.005'; +our $VERSION = '2.006'; # 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 7195d322..a7527846 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.005'; +our $VERSION = '2.006'; # 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 bded0785..ecab11e6 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.005'; +our $VERSION = '2.006'; # 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 64afe3c2..b6b6dbae 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.005'; +our $VERSION = '2.006'; # 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 cba96137..2dc8973f 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.005'; +our $VERSION = '2.006'; # 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 9c1e8f6e..6d4ed466 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.005'; +our $VERSION = '2.006'; # 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 4343efa0..71d075c1 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.005'; +our $VERSION = '2.006'; # 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 bab282dd..c68210f4 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.005'; +our $VERSION = '2.006'; # 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 57e085dd..953097c5 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.005'; +our $VERSION = '2.006'; # 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 00f1d6f7..b67289b0 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.005'; +our $VERSION = '2.006'; # 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 008538fc..1ad59ac8 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.005'; +our $VERSION = '2.006'; # 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 b385c209..cee8c158 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.005'; +our $VERSION = '2.006'; # 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 d01646af..73519137 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.005'; +our $VERSION = '2.006'; # 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 faa695f5..ebb3e66e 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.005'; +our $VERSION = '2.006'; # 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 684d7aef..d123aac5 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.005'; +our $VERSION = '2.006'; # 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 2df4ef29..a92d5f6d 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.005'; +our $VERSION = '2.006'; # 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 b0b24cb2..e88333aa 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.005'; +our $VERSION = '2.006'; # 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 3c7ace3a..72066dcf 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.005'; +our $VERSION = '2.006'; # 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 6dd8ac3c..d4e68781 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.005'; +our $VERSION = '2.006'; # 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 0bc32478..44a82f18 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.005'; +our $VERSION = '2.006'; # 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 f6a4f5cb..9a6b5f7b 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.005'; +our $VERSION = '2.006'; # 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 7042f884..6597c695 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.005'; +our $VERSION = '2.006'; # 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 805d02e2..caf81dd5 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.005'; +our $VERSION = '2.006'; # 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 9d54cb2b..530a5881 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.005'; +our $VERSION = '2.006'; # 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 c67e3ed9..c97028d6 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.005'; +our $VERSION = '2.006'; # 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 e712a9c7..59377a2c 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.005'; +our $VERSION = '2.006'; # 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 eb5ff042..d7256137 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.005'; +our $VERSION = '2.006'; # 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 ef6ed926..6f0dc777 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.005'; +our $VERSION = '2.006'; # 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 67143071..663435c0 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.005'; +our $VERSION = '2.006'; # 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 ff839f31..4aa15f75 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.005'; +our $VERSION = '2.006'; # 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 24837f99..1de7d020 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.005'; +our $VERSION = '2.006'; # 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 29175792..c9242edb 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.005'; +our $VERSION = '2.006'; # 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 d14b00cb..ed68cb4c 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.005'; +our $VERSION = '2.006'; # Created by DBIx::Class::Schema::Loader # DO NOT MODIFY THE FIRST PART OF THIS FILE diff --git a/lib/NGCP/Schema/Result/voip_pbx_groups.pm b/lib/NGCP/Schema/Result/voip_pbx_groups.pm index 9edbfc1e..9bb24d06 100644 --- a/lib/NGCP/Schema/Result/voip_pbx_groups.pm +++ b/lib/NGCP/Schema/Result/voip_pbx_groups.pm @@ -2,7 +2,7 @@ package NGCP::Schema::Result::voip_pbx_groups; use Sipwise::Base; use MooseX::NonMoose; use Scalar::Util qw(blessed); -our $VERSION = '2.005'; +our $VERSION = '2.006'; # 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 6a5b826d..7b6e70ef 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.005'; +our $VERSION = '2.006'; # 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 863ca172..53152499 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.005'; +our $VERSION = '2.006'; # 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 44d7e2ba..bfae9f63 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.005'; +our $VERSION = '2.006'; # 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 8cd65344..c296133a 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.005'; +our $VERSION = '2.006'; # 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 2d37e288..d095bb54 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.005'; +our $VERSION = '2.006'; # 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 801dcdff..49eaa820 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.005'; +our $VERSION = '2.006'; # 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 26c01979..a0b7cb20 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.005'; +our $VERSION = '2.006'; # 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 fc6c3674..6d8a0e8c 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.005'; +our $VERSION = '2.006'; # 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 d4a41f9b..f311d491 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.005'; +our $VERSION = '2.006'; # 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 0be69410..d153e588 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.005'; +our $VERSION = '2.006'; # 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 de24b053..fff169e8 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.005'; +our $VERSION = '2.006'; # 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 05b264c6..0139ee8b 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.005'; +our $VERSION = '2.006'; # 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 96f7a861..3ec05513 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.005'; +our $VERSION = '2.006'; # 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 5291c113..0f484dd4 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.005'; +our $VERSION = '2.006'; # 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 0e468460..21f9a796 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.005'; +our $VERSION = '2.006'; # 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 e295aed5..ca29a9df 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.005'; +our $VERSION = '2.006'; # 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 cce2ab90..3728d5bb 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.005'; +our $VERSION = '2.006'; # 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 ea2a2dd6..47b9fbdc 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.005'; +our $VERSION = '2.006'; # 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 4aa793e1..4b790b2a 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.005'; +our $VERSION = '2.006'; # 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 de73a98e..fdf8dd79 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.005'; +our $VERSION = '2.006'; # 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 f40f9846..923e5df2 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.005'; +our $VERSION = '2.006'; # 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 b5e14b54..3e7a5ab9 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.005'; +our $VERSION = '2.006'; # 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 cd6b7762..a453805c 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.005'; +our $VERSION = '2.006'; # 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 71d6daf9..fba50168 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.005'; +our $VERSION = '2.006'; # 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 2cde6fc1..1c6d2408 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.005'; +our $VERSION = '2.006'; # 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 b2f4ef5c..489651aa 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.005'; +our $VERSION = '2.006'; __PACKAGE__->load_components('Helper::ResultSet');