diff --git a/Changes b/Changes
index 2154720a..1113673c 100644
--- a/Changes
+++ b/Changes
@@ -4,6 +4,22 @@
 
 Changes - Revision history for NGCP-Schema
 
+=head2 2.005  2013-09-11
+
+=over
+
+=item Add pbx group table and pbx related fields/rels
+
+=item Sync voip_pbx_groups to underlying database changes
+
+=item Align to new product class enum
+
+=item Fix relation to voip_rewrite_rule_sets
+
+=item Move test.conf to a share directory to make it accessible from schema consumers
+
+=back
+
 =head2 2.004  2013-08-06
 
 deflate messages timestamp to micro precision
diff --git a/README b/README
index 250b9211..15159bce 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
 =encoding UTF-8
 
-NGCP-Schema version 2.004
+NGCP-Schema version 2.005
 
 =head1 NAME
 
diff --git a/debian/changelog b/debian/changelog
index 5b8fd208..674bda92 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,17 @@
+ngcp-schema (2.005) unstable; urgency=low
+
+  * Add pbx group table and pbx related fields/rels
+
+  * Sync voip_pbx_groups to underlying database changes
+
+  * Align to new product class enum
+
+  * Fix relation to voip_rewrite_rule_sets
+
+  * Move test.conf to a share directory to make it accessible from schema consumers
+
+ -- Gerhard Jungwirth <gjungwirth@sipwise.com>  Wed, 11 Sep 2013 13:34:47 +0200
+
 ngcp-schema (2.004) unstable; urgency=low
 
   * deflate messages timestamp to micro precision
diff --git a/lib/NGCP/Schema.pm b/lib/NGCP/Schema.pm
index 6d104646..d1bd42f2 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.004';
+our $VERSION = '2.005';
 
 __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.004
+This document describes NGCP::Schema version 2.005
 
 =head1 SYNOPSIS
 
diff --git a/lib/NGCP/Schema/Config.pm b/lib/NGCP/Schema/Config.pm
index 19e7ef16..849ae0a3 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.004';
+our $VERSION = '2.005';
 
 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.004
+This document describes NGCP::Schema::Config version 2.005
 
 =head1 SYNOPSIS
 
diff --git a/lib/NGCP/Schema/Exception.pm b/lib/NGCP/Schema/Exception.pm
index fa345bdb..2576f441 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.004';
+our $VERSION = '2.005';
 
 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.004
+This document describes NGCP::Schema::Exception version 2.005
 
 =head1 SYNOPSIS
 
diff --git a/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm b/lib/NGCP/Schema/InflateColumn/DateTime/EpochMicro.pm
index 9a4f7a35..d9d42ddc 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.004';
+our $VERSION = '2.005';
 
 __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 82438c73..ef27ba1a 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.004';
+our $VERSION = '2.005';
 
 __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 188483e0..4f6958ae 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.004';
+our $VERSION = '2.005';
 
 __PACKAGE__->load_components( qw( InflateColumn::DateTime ) );
 
diff --git a/lib/NGCP/Schema/Result/acc.pm b/lib/NGCP/Schema/Result/acc.pm
index cbe5555d..1e2e4047 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.004';
+our $VERSION = '2.005';
 
 # 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 ea4d7059..3aeea697 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.004';
+our $VERSION = '2.005';
 
 # 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 74a24c2c..d6986dff 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.004';
+our $VERSION = '2.005';
 
 # 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 1b0b595a..3d368c04 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.004';
+our $VERSION = '2.005';
 
 # 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 aa346770..6b72ada8 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.004';
+our $VERSION = '2.005';
 
 # 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 970631d6..8cea70bf 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.004';
+our $VERSION = '2.005';
 
 # 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 a5c9010b..953a32f4 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.004';
+our $VERSION = '2.005';
 
 # 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 ce3e4734..30e01ecd 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.004';
+our $VERSION = '2.005';
 
 # 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 52f36087..27c34833 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.004';
+our $VERSION = '2.005';
 
 # 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 99311b1d..3e477015 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.004';
+our $VERSION = '2.005';
 
 # 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 e2a664f3..191e7f3a 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.004';
+our $VERSION = '2.005';
 
 # 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 73e2f1cc..02d302fe 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.004';
+our $VERSION = '2.005';
 
 # 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 9ddd0ca0..d8af5f53 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.004';
+our $VERSION = '2.005';
 
 # 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 248dfb26..9a8f7ae2 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.004';
+our $VERSION = '2.005';
 
 # 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 e4c6c1ad..688af37a 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.004';
+our $VERSION = '2.005';
 
 # 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 eda0ebce..dae3ef53 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.004';
+our $VERSION = '2.005';
 
 # 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 31dcfb38..b8d7ab58 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.004';
+our $VERSION = '2.005';
 
 # 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 db7e65bc..26e6ba6e 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.004';
+our $VERSION = '2.005';
 
 # 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 49a7f897..d312af03 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.004';
+our $VERSION = '2.005';
 
 # 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 75fa2346..ab1ea294 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.004';
+our $VERSION = '2.005';
 
 # 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 23c242a1..26a3057b 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.004';
+our $VERSION = '2.005';
 
 # 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 7b60410e..a3924132 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.004';
+our $VERSION = '2.005';
 
 # 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 54bb23ef..ea669d62 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.004';
+our $VERSION = '2.005';
 
 # 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 4e0e7363..d1c039cc 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.004';
+our $VERSION = '2.005';
 
 # 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 457f8ad8..7c110ba6 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.004';
+our $VERSION = '2.005';
 
 # 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 40f7aaa2..eac635f6 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.004';
+our $VERSION = '2.005';
 
 # 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 5f989961..b1d8fc43 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.004';
+our $VERSION = '2.005';
 
 # 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 d5f810a5..4b8d9bda 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.004';
+our $VERSION = '2.005';
 
 # 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 fefe2f3d..69f62177 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.004';
+our $VERSION = '2.005';
 
 # 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 d1710508..04ed9306 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.004';
+our $VERSION = '2.005';
 
 # 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 bf5123f5..f6a5a568 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.004';
+our $VERSION = '2.005';
 
 # 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 e39718b5..45faab42 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.004';
+our $VERSION = '2.005';
 
 # 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 718b741f..33af9f8e 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.004';
+our $VERSION = '2.005';
 
 # 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 44de78a9..8203d70c 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.004';
+our $VERSION = '2.005';
 
 # 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 7b21d908..604b4391 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.004';
+our $VERSION = '2.005';
 
 # 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 1d5bb709..cda0ee9f 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.004';
+our $VERSION = '2.005';
 
 # 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 233af637..a51411c0 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.004';
+our $VERSION = '2.005';
 
 # 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 38aeba2f..c54b916d 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.004';
+our $VERSION = '2.005';
 
 # 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 af6b38b9..a62bc290 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.004';
+our $VERSION = '2.005';
 
 # 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 a9a09ebd..4a7e17ce 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.004';
+our $VERSION = '2.005';
 
 # 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 cebae2f8..224eac07 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.004';
+our $VERSION = '2.005';
 
 # 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 f5443fdc..99aec126 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.004';
+our $VERSION = '2.005';
 
 # 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 87efee2d..fa00faef 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.004';
+our $VERSION = '2.005';
 
 # 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 8f8f1f29..f49a9627 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.004';
+our $VERSION = '2.005';
 
 # 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 8fe6096e..6be24f7a 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.004';
+our $VERSION = '2.005';
 
 # 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 7d82f3bd..a59ce020 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.004';
+our $VERSION = '2.005';
 
 # 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 93d9df85..de1bcb3f 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.004';
+our $VERSION = '2.005';
 
 # 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 9fc50ed8..4ae9add8 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.004';
+our $VERSION = '2.005';
 
 # 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 c7355ac6..6482e531 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.004';
+our $VERSION = '2.005';
 
 # 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 ea809f48..cc219401 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.004';
+our $VERSION = '2.005';
 
 # 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 453672d3..151fae35 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.004';
+our $VERSION = '2.005';
 
 # 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 679b91ed..dff0979f 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.004';
+our $VERSION = '2.005';
 
 # 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 8679a4d1..14b62664 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.004';
+our $VERSION = '2.005';
 
 # 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 1abd2a25..e92a03f5 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.004';
+our $VERSION = '2.005';
 
 # 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 403808b5..c0d6832e 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.004';
+our $VERSION = '2.005';
 
 # 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 ad8a5157..5116847a 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.004';
+our $VERSION = '2.005';
 
 # 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 f0f2ea54..ef64b61e 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.004';
+our $VERSION = '2.005';
 
 # 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 b46dd3d0..51e367bd 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.004';
+our $VERSION = '2.005';
 
 # 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 8b5a44ce..ac838782 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.004';
+our $VERSION = '2.005';
 
 # 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 a1dd06b8..a61d09bb 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.004';
+our $VERSION = '2.005';
 
 # 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 d265c54b..11787618 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.004';
+our $VERSION = '2.005';
 
 # 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 abf08714..5380b5c5 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.004';
+our $VERSION = '2.005';
 
 # 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 95b4d980..f7c51518 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.004';
+our $VERSION = '2.005';
 
 # 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 318ae96f..8a426d42 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.004';
+our $VERSION = '2.005';
 
 # 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 2ccd7c8c..203c99dc 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.004';
+our $VERSION = '2.005';
 
 # 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 06ea0914..13cf80f8 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.004';
+our $VERSION = '2.005';
 
 # 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 f8abc496..7abfceef 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.004';
+our $VERSION = '2.005';
 
 # 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 639e24f5..b9c7c29d 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.004';
+our $VERSION = '2.005';
 
 # 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 87afc9dc..0d8a8c1a 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.004';
+our $VERSION = '2.005';
 
 # 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 e087b9c5..01f1a169 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.004';
+our $VERSION = '2.005';
 
 # 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 c741e03a..2477bbfb 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.004';
+our $VERSION = '2.005';
 
 # 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 a64e0295..52d94d58 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.004';
+our $VERSION = '2.005';
 
 # 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 87cfc73d..c3953f72 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.004';
+our $VERSION = '2.005';
 
 # 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 d13c2407..2581c457 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.004';
+our $VERSION = '2.005';
 
 # 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 991abe9b..b94068da 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.004';
+our $VERSION = '2.005';
 
 # 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 e7e589e2..5aa2a886 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.004';
+our $VERSION = '2.005';
 
 # 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 096c2231..814807a1 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.004';
+our $VERSION = '2.005';
 
 # 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 c429cf60..b9a0ab08 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.004';
+our $VERSION = '2.005';
 
 # 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 42b285ce..ed77a8a0 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.004';
+our $VERSION = '2.005';
 
 # 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 0aa6e139..57bad80a 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.004';
+our $VERSION = '2.005';
 
 # 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 5990d947..de9cac24 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.004';
+our $VERSION = '2.005';
 
 # 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 cee7a811..f4123368 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.004';
+our $VERSION = '2.005';
 
 # 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 fe064901..4ec5bab9 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.004';
+our $VERSION = '2.005';
 
 # 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 f8423354..494ff1bc 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.004';
+our $VERSION = '2.005';
 
 # 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 07f36777..047a8508 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.004';
+our $VERSION = '2.005';
 
 # 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 fb17f037..22e7cbad 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.004';
+our $VERSION = '2.005';
 
 # 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 732d54bd..7195d322 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.004';
+our $VERSION = '2.005';
 
 # 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 57406af1..bded0785 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.004';
+our $VERSION = '2.005';
 
 # 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 4d806331..64afe3c2 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.004';
+our $VERSION = '2.005';
 
 # 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 7217be8c..cba96137 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.004';
+our $VERSION = '2.005';
 
 # 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 291baeb0..9c1e8f6e 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.004';
+our $VERSION = '2.005';
 
 # 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 6a8a5887..4343efa0 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.004';
+our $VERSION = '2.005';
 
 # 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 744fce78..bab282dd 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.004';
+our $VERSION = '2.005';
 
 # 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 caab504d..57e085dd 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.004';
+our $VERSION = '2.005';
 
 # 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 8f80087f..00f1d6f7 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.004';
+our $VERSION = '2.005';
 
 # 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 40ffe43b..008538fc 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.004';
+our $VERSION = '2.005';
 
 # 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 45e033b0..b385c209 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.004';
+our $VERSION = '2.005';
 
 # 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 a1ef0bf6..d01646af 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.004';
+our $VERSION = '2.005';
 
 # 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 af7a0e1e..faa695f5 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.004';
+our $VERSION = '2.005';
 
 # 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 d978ed3f..684d7aef 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.004';
+our $VERSION = '2.005';
 
 # 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 1b0d4a3e..2df4ef29 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.004';
+our $VERSION = '2.005';
 
 # 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 a57ae92e..b0b24cb2 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.004';
+our $VERSION = '2.005';
 
 # 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 4196cc1d..3c7ace3a 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.004';
+our $VERSION = '2.005';
 
 # 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 d11a214c..6dd8ac3c 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.004';
+our $VERSION = '2.005';
 
 # 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 df86b948..0bc32478 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.004';
+our $VERSION = '2.005';
 
 # 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 b05148bc..f6a4f5cb 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.004';
+our $VERSION = '2.005';
 
 # 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 edd41bbd..7042f884 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.004';
+our $VERSION = '2.005';
 
 # 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 ef9abe12..805d02e2 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.004';
+our $VERSION = '2.005';
 
 # 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 438b5442..9d54cb2b 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.004';
+our $VERSION = '2.005';
 
 # 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 4002921f..c67e3ed9 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.004';
+our $VERSION = '2.005';
 
 # 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 72cd44bb..e712a9c7 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.004';
+our $VERSION = '2.005';
 
 # 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 b063f9a6..eb5ff042 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.004';
+our $VERSION = '2.005';
 
 # 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 666f9634..ef6ed926 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.004';
+our $VERSION = '2.005';
 
 # 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 dbc0a6c2..67143071 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.004';
+our $VERSION = '2.005';
 
 # 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 f5aadefc..ff839f31 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.004';
+our $VERSION = '2.005';
 
 # 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 866a59d8..24837f99 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.004';
+our $VERSION = '2.005';
 
 # 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 5d044c19..29175792 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.004';
+our $VERSION = '2.005';
 
 # 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 d1a51ec5..d14b00cb 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.004';
+our $VERSION = '2.005';
 
 # 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 2d6d3db3..9edbfc1e 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.004';
+our $VERSION = '2.005';
 
 # 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 28fa433d..6a5b826d 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.004';
+our $VERSION = '2.005';
 
 # 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 3d013722..863ca172 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.004';
+our $VERSION = '2.005';
 
 # 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 f1ca3cff..44d7e2ba 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.004';
+our $VERSION = '2.005';
 
 # 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 e326b2bb..8cd65344 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.004';
+our $VERSION = '2.005';
 
 # 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 683ef405..2d37e288 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.004';
+our $VERSION = '2.005';
 
 # 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 90c6382c..801dcdff 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.004';
+our $VERSION = '2.005';
 
 # 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 00eda168..26c01979 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.004';
+our $VERSION = '2.005';
 
 # 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 6347aecc..fc6c3674 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.004';
+our $VERSION = '2.005';
 
 # 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 037ef50d..d4a41f9b 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.004';
+our $VERSION = '2.005';
 
 # 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 958c3f57..0be69410 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.004';
+our $VERSION = '2.005';
 
 # 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 7eeede83..de24b053 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.004';
+our $VERSION = '2.005';
 
 # 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 cddb4fc2..05b264c6 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.004';
+our $VERSION = '2.005';
 
 # 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 6a9f5adf..96f7a861 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.004';
+our $VERSION = '2.005';
 
 # 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 9678465c..5291c113 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.004';
+our $VERSION = '2.005';
 
 # 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 1fc07bd4..0e468460 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.004';
+our $VERSION = '2.005';
 
 # 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 767e6228..e295aed5 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.004';
+our $VERSION = '2.005';
 
 # 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 99bac099..cce2ab90 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.004';
+our $VERSION = '2.005';
 
 # 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 085cee6e..ea2a2dd6 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.004';
+our $VERSION = '2.005';
 
 # 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 39f91cff..4aa793e1 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.004';
+our $VERSION = '2.005';
 
 # 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 3a3c459a..de73a98e 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.004';
+our $VERSION = '2.005';
 
 # 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 9a10e98d..f40f9846 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.004';
+our $VERSION = '2.005';
 
 # 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 bd47d899..b5e14b54 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.004';
+our $VERSION = '2.005';
 
 # 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 574c80e6..cd6b7762 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.004';
+our $VERSION = '2.005';
 
 # 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 bc7a44c3..71d6daf9 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.004';
+our $VERSION = '2.005';
 
 # 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 3330726b..2cde6fc1 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.004';
+our $VERSION = '2.005';
 
 # 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 0661633d..b2f4ef5c 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.004';
+our $VERSION = '2.005';
 
 __PACKAGE__->load_components('Helper::ResultSet');