From 03d22cb20b39edb8da64ac5ffbe4418a88ba425a Mon Sep 17 00:00:00 2001 From: Alessio Garzi Date: Fri, 15 Oct 2021 11:21:21 +0200 Subject: [PATCH] TT#140351 Better description for upn_block_clir and outbound_from_display Description for field upn_block_clir is fixed. This pref blocks outgoing calls and not incoming. Additionally fixed anonymous typo. Better description for outbound_from_display pref Change-Id: Ic578da7b3c14689a3883a5f18c804105961eb5b6 --- db_scripts/diff/15700.down | 7 +++++++ db_scripts/diff/15700.up | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 db_scripts/diff/15700.down create mode 100644 db_scripts/diff/15700.up diff --git a/db_scripts/diff/15700.down b/db_scripts/diff/15700.down new file mode 100644 index 00000000..ddd3270f --- /dev/null +++ b/db_scripts/diff/15700.down @@ -0,0 +1,7 @@ +USE provisioning; +SET autocommit=0; + +UPDATE voip_preferences SET label='Block incoming anonymous calls from this user',description='If enabled, incoming anonyous calls from this user will be dropped' WHERE attribute='upn_block_clir'; +UPDATE voip_preferences SET description='The content to put into the From display-name for outbound calls from the platform to the subscriber' WHERE attribute='outbound_from_display'; + +commit; \ No newline at end of file diff --git a/db_scripts/diff/15700.up b/db_scripts/diff/15700.up new file mode 100644 index 00000000..0090304b --- /dev/null +++ b/db_scripts/diff/15700.up @@ -0,0 +1,7 @@ +USE provisioning; +SET autocommit=0; + +UPDATE voip_preferences SET label='Block outgoing anonymous calls from this user',description='If enabled, outgoing anonymous calls from this user will be dropped' WHERE attribute='upn_block_clir'; +UPDATE voip_preferences SET description='The content to put into the From display-name for outbound calls from the platform to the subscriber/peer' WHERE attribute='outbound_from_display'; + +commit; \ No newline at end of file