From 8aa1b28d2bde10a7454a33ea63127bb5bf47411b Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Fri, 23 Dec 2022 00:03:11 +0100 Subject: [PATCH] MT#56234 voip_preferences ringtimeout flag update * ringtimeout is now internal = 1 as this preference is dynamically changed by CFT call forwards and is not meant to be usable from the UI/API Change-Id: I6c2abf94e455cf50cdbc6cf7122844582ba6bbb4 --- db_scripts/diff/15747.down | 6 ++++++ db_scripts/diff/15747.up | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 db_scripts/diff/15747.down create mode 100644 db_scripts/diff/15747.up diff --git a/db_scripts/diff/15747.down b/db_scripts/diff/15747.down new file mode 100644 index 00000000..3b81ca09 --- /dev/null +++ b/db_scripts/diff/15747.down @@ -0,0 +1,6 @@ +use provisioning; +set autocommit=0; + +UPDATE voip_preferences SET internal = 0 WHERE attribute = 'ringtimeout'; + +COMMIT; diff --git a/db_scripts/diff/15747.up b/db_scripts/diff/15747.up new file mode 100644 index 00000000..f6eb20f6 --- /dev/null +++ b/db_scripts/diff/15747.up @@ -0,0 +1,6 @@ +use provisioning; +set autocommit=0; + +UPDATE voip_preferences SET internal = 1 WHERE attribute = 'ringtimeout'; + +COMMIT;