From eccba55a792086dbae150947aa5f0ec82e3764f2 Mon Sep 17 00:00:00 2001 From: Irina Peshinskaya Date: Fri, 22 Jul 2016 03:47:17 +0300 Subject: [PATCH] MT#21269 Add snom_redirect enum value to the prov tables Change-Id: Ic3247ced08107e8af05698884a1893bc4a327656 --- db_scripts/diff/15260.up | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 db_scripts/diff/15260.up diff --git a/db_scripts/diff/15260.up b/db_scripts/diff/15260.up new file mode 100644 index 00000000..0307cb13 --- /dev/null +++ b/db_scripts/diff/15260.up @@ -0,0 +1,9 @@ +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') DEFAULT 'http'; + +alter table autoprov_sync_parameters change column `bootstrap_method` bootstrap_method enum('http','redirect_panasonic','redirect_yealink','redirect_polycom','redirect_snom') not null default 'http'; + +commit;