From f34cc99dabff17eac0a966cc7b328b8bef494167 Mon Sep 17 00:00:00 2001 From: Marco Capetta Date: Mon, 23 Oct 2023 16:07:36 +0200 Subject: [PATCH] MT#55033 Restore provisioning.bootstrap_method 'none' value The method 'none' was added is commit 63815c948 as dedicated request from a customer to support provisioning of phones without ZRP. During future changes to the supported values, in the commit 34273a837 the 'none' value got lost by mistake. This commit will re-add support for the 'none' value. Change-Id: Ia1b0367923b15e55c1dcfb69655bd23954033c77 --- db_scripts/diff/15786.down | 6 ++++++ db_scripts/diff/15786.up | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 db_scripts/diff/15786.down create mode 100644 db_scripts/diff/15786.up diff --git a/db_scripts/diff/15786.down b/db_scripts/diff/15786.down new file mode 100644 index 00000000..d188da39 --- /dev/null +++ b/db_scripts/diff/15786.down @@ -0,0 +1,6 @@ +USE provisioning; +SET autocommit=0; + +ALTER TABLE autoprov_devices CHANGE COLUMN bootstrap_method bootstrap_method ENUM('http','redirect_panasonic','redirect_yealink','redirect_polycom','redirect_snom','redirect_grandstream','redirect_ale') NULL DEFAULT 'http' ; + +COMMIT; \ No newline at end of file diff --git a/db_scripts/diff/15786.up b/db_scripts/diff/15786.up new file mode 100644 index 00000000..d72a1d19 --- /dev/null +++ b/db_scripts/diff/15786.up @@ -0,0 +1,6 @@ +USE provisioning; +SET autocommit=0; + +ALTER TABLE autoprov_devices CHANGE COLUMN bootstrap_method bootstrap_method ENUM('http','redirect_panasonic','redirect_yealink','redirect_polycom','redirect_snom','redirect_grandstream','redirect_ale','none') NULL DEFAULT 'http' ; + +COMMIT; \ No newline at end of file