From 965c188f7168d21423cceec4fa0ac58262e49b03 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Wed, 7 Oct 2020 10:23:20 +0200 Subject: [PATCH] TT#94906 Update description of 'stop_forking_code_lists' preference Change-Id: If45ca675ae9757345158e85d0b0b58f81a3626c6 --- db_scripts/diff/15624.down | 6 ++++++ db_scripts/diff/15624.up | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 db_scripts/diff/15624.down create mode 100644 db_scripts/diff/15624.up diff --git a/db_scripts/diff/15624.down b/db_scripts/diff/15624.down new file mode 100644 index 00000000..8bd1a5a3 --- /dev/null +++ b/db_scripts/diff/15624.down @@ -0,0 +1,6 @@ +USE provisioning; +SET autocommit=0; + +UPDATE voip_preferences SET description = "Contains a list of SIP codes that is matched with the response code received in reply from the subscriber's contacts in case of call failure. In case of match, the forking based on Q value is stopped and the code is transparently signaled back to the caller, whereas also an announcement can be played if configured in the existing sound set. Response codes 600, 603, 604, 606 are implicitly included in the list." WHERE attribute = 'stop_forking_code_lists'; + +COMMIT; diff --git a/db_scripts/diff/15624.up b/db_scripts/diff/15624.up new file mode 100644 index 00000000..888ca94d --- /dev/null +++ b/db_scripts/diff/15624.up @@ -0,0 +1,6 @@ +USE provisioning; +SET autocommit=0; + +UPDATE voip_preferences SET description = "Contains a list of SIP codes that is matched with the response code received in reply from the subscriber's contacts in case of call failure. In case of match, the forking (parallel or based on Q value) is stopped and the code is transparently signaled back to the caller, whereas also an announcement can be played if configured in the existing sound set or a call forward can be triggered if activated. Response codes 600, 603, 604, 606 are implicitly included in the list." WHERE attribute = 'stop_forking_code_lists'; + +COMMIT;