mirror of https://github.com/sipwise/db-schema.git
The method 'none' was added is commitmr12.163815c948as dedicated request from a customer to support provisioning of phones without ZRP. During future changes to the supported values, in the commit34273a837the 'none' value got lost by mistake. This commit will re-add support for the 'none' value. Change-Id: Ia1b0367923b15e55c1dcfb69655bd23954033c77
parent
8907c090ed
commit
f34cc99dab
@ -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;
|
||||
@ -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;
|
||||
Loading…
Reference in new issue