mirror of https://github.com/sipwise/db-schema.git
* add t38 preference to enable/disable t38 support per subscriber
* add ecm preference to enable/disable ecm support per subscriber
Change-Id: I3ae69fa49c952732c012c5fd385104e5ebdc92fa
changes/20/12820/3
parent
f9e3da0235
commit
b2f65df857
@ -0,0 +1,3 @@
|
||||
USE provisioning;
|
||||
|
||||
ALTER TABLE voip_fax_preferences DROP t38, DROP ecm;
|
||||
@ -0,0 +1,5 @@
|
||||
USE provisioning;
|
||||
|
||||
ALTER TABLE voip_fax_preferences
|
||||
ADD t38 tinyint(1) NOT NULL DEFAULT '1',
|
||||
ADD ecm tinyint(1) NOT NULL DEFAULT '1';
|
||||
Loading…
Reference in new issue