From 686e45a1b51060fa85121c76b8d2cd9fca446a62 Mon Sep 17 00:00:00 2001 From: Daniel Grotti Date: Wed, 15 Nov 2023 17:13:13 +0100 Subject: [PATCH] MT#58688 Expose peer_auth_registrar_server to usr_pref Expose peer_auth_registrar_server to usr_pref to align the subscriber remote authentication to the peering authentication. Change-Id: Ib65b9b40b70dc9eb122411e27793c1f6ecb8dfc5 --- db_scripts/diff/15789.down | 7 +++++++ db_scripts/diff/15789.up | 7 +++++++ 2 files changed, 14 insertions(+) create mode 100644 db_scripts/diff/15789.down create mode 100644 db_scripts/diff/15789.up diff --git a/db_scripts/diff/15789.down b/db_scripts/diff/15789.down new file mode 100644 index 00000000..71dcdaa0 --- /dev/null +++ b/db_scripts/diff/15789.down @@ -0,0 +1,7 @@ +use provisioning; +set autocommit=0; + +# disable on subscribers's preferences +UPDATE voip_preferences SET usr_pref = 0 WHERE attribute = 'peer_auth_registrar_server'; + +COMMIT; \ No newline at end of file diff --git a/db_scripts/diff/15789.up b/db_scripts/diff/15789.up new file mode 100644 index 00000000..1415e0ef --- /dev/null +++ b/db_scripts/diff/15789.up @@ -0,0 +1,7 @@ +use provisioning; +set autocommit=0; + +# enable on subscribers's preferences +UPDATE voip_preferences SET usr_pref = 1 WHERE attribute = 'peer_auth_registrar_server'; + +COMMIT; \ No newline at end of file