From 94693a3e799437503155058d5a7ce50f38d90be9 Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Thu, 22 Dec 2022 12:20:38 +0100 Subject: [PATCH] MT#56234 add voip_preferences.expose_to_subscriber Change-Id: Ieef501ffee843632d83003959ffba585ccaac9a6 --- lib/NGCP/Schema/Result/voip_preferences.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/NGCP/Schema/Result/voip_preferences.pm b/lib/NGCP/Schema/Result/voip_preferences.pm index 13bde561..9a3bd296 100644 --- a/lib/NGCP/Schema/Result/voip_preferences.pm +++ b/lib/NGCP/Schema/Result/voip_preferences.pm @@ -78,6 +78,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "description", { data_type => "text", is_nullable => 1 }, + "expose_to_subscriber", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, ); __PACKAGE__->set_primary_key("id");