mirror of https://github.com/sipwise/db-schema.git
parent
1083b39a8c
commit
8ecd8fb1ad
@ -0,0 +1,8 @@
|
||||
USE provisioning;
|
||||
|
||||
UPDATE voip_subscribers SET pbx_hunt_policy = 'serial'
|
||||
WHERE pbx_hunt_policy IN ('random', 'circular');
|
||||
|
||||
ALTER TABLE voip_subscribers
|
||||
CHANGE COLUMN `pbx_hunt_policy` `pbx_hunt_policy`
|
||||
enum('serial','parallel') DEFAULT NULL;
|
@ -0,0 +1,5 @@
|
||||
USE provisioning;
|
||||
|
||||
ALTER TABLE voip_subscribers
|
||||
CHANGE COLUMN `pbx_hunt_policy` `pbx_hunt_policy`
|
||||
enum('serial','parallel', 'random', 'circular') DEFAULT NULL;
|
Loading…
Reference in new issue