From 9e197028ca1f51531ab4a47cef5064043b38c6c1 Mon Sep 17 00:00:00 2001 From: Gerhard Jungwirth Date: Thu, 18 Aug 2016 15:03:25 +0200 Subject: [PATCH] MT#22085 MT#19637 improve preference descriptions Change-Id: I8a3bbb634750923dfb42874ac6a03d746a61e384 --- db_scripts/diff/15272.up | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 db_scripts/diff/15272.up diff --git a/db_scripts/diff/15272.up b/db_scripts/diff/15272.up new file mode 100644 index 00000000..a26eeb7a --- /dev/null +++ b/db_scripts/diff/15272.up @@ -0,0 +1,13 @@ +SET AUTOCOMMIT=0; + +USE provisioning; + +UPDATE voip_preferences + SET description = 'Defines a default caller LNP prefix which is written into CDRs if no LNP entry is found for the caller number in the LNP database. This prefix is NOT used for routing purposes like rewrite rules, only for CDR tagging.' + WHERE attribute = 'default_lnp_prefix'; + +UPDATE voip_preferences + SET label = 'Enable Caller LNP lookup' + WHERE attribute = 'caller_lnp_lookup'; + +COMMIT;