From 54bb4034122eaf0e58445f3542045e894634fec1 Mon Sep 17 00:00:00 2001 From: Antoine Lingat Date: Tue, 28 Jun 2022 15:22:41 +0200 Subject: [PATCH] TT#180900 Update label/desc of pref 'cloud_pbx_hunt_timeout' Remove 'serial' from the label and description of 'cloud_pbx_hunt_timeout' as this preference can now also be used for parallel groups. Change-Id: I66a51a5dddd9b872d97b2ec3de36ce79524abce6 --- db_scripts/diff/15723.down | 7 +++++++ db_scripts/diff/15723.up | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 db_scripts/diff/15723.down create mode 100644 db_scripts/diff/15723.up diff --git a/db_scripts/diff/15723.down b/db_scripts/diff/15723.down new file mode 100644 index 00000000..95fb0d6f --- /dev/null +++ b/db_scripts/diff/15723.down @@ -0,0 +1,7 @@ +SET AUTOCOMMIT=0; + +USE provisioning + +UPDATE voip_preferences SET label = 'CloudPBX Serial Hunt Timeout', description = 'The serial timeout for hunting in PBX hunt groups.' WHERE attribute = 'cloud_pbx_hunt_timeout'; + +COMMIT; diff --git a/db_scripts/diff/15723.up b/db_scripts/diff/15723.up new file mode 100644 index 00000000..a15221b9 --- /dev/null +++ b/db_scripts/diff/15723.up @@ -0,0 +1,7 @@ +SET AUTOCOMMIT=0; + +USE provisioning; + +UPDATE voip_preferences SET label = 'CloudPBX Hunt Timeout', description = 'The timeout for hunting in PBX hunt groups.' WHERE attribute = 'cloud_pbx_hunt_timeout'; + +COMMIT;