diff --git a/lib/NGCP/Schema/Result/voip_preferences.pm b/lib/NGCP/Schema/Result/voip_preferences.pm index c9ededbf..d4b59f8a 100644 --- a/lib/NGCP/Schema/Result/voip_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_preferences.pm @@ -39,6 +39,10 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "peer_pref", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "contract_pref", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "contract_location_pref", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "expose_to_customer", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "modify_timestamp", diff --git a/lib/NGCP/Schema/Result/voip_preferences_enum.pm b/lib/NGCP/Schema/Result/voip_preferences_enum.pm index 79c28e93..7248646e 100644 --- a/lib/NGCP/Schema/Result/voip_preferences_enum.pm +++ b/lib/NGCP/Schema/Result/voip_preferences_enum.pm @@ -32,6 +32,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "contract_pref", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "contract_location_pref", + { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "default_val", { data_type => "tinyint", is_nullable => 1 }, );