From b2f65df85785c5dc35da92c26b4e0cef7169ea48 Mon Sep 17 00:00:00 2001 From: Kirill Solomko Date: Sun, 23 Apr 2017 20:47:33 +0200 Subject: [PATCH] TT#12593 add voip_fax_preferences t38 ecm * add t38 preference to enable/disable t38 support per subscriber * add ecm preference to enable/disable ecm support per subscriber Change-Id: I3ae69fa49c952732c012c5fd385104e5ebdc92fa --- db_scripts/diff/15337.down | 3 +++ db_scripts/diff/15337.up | 5 +++++ 2 files changed, 8 insertions(+) create mode 100644 db_scripts/diff/15337.down create mode 100644 db_scripts/diff/15337.up diff --git a/db_scripts/diff/15337.down b/db_scripts/diff/15337.down new file mode 100644 index 00000000..2f5156ea --- /dev/null +++ b/db_scripts/diff/15337.down @@ -0,0 +1,3 @@ +USE provisioning; + +ALTER TABLE voip_fax_preferences DROP t38, DROP ecm; diff --git a/db_scripts/diff/15337.up b/db_scripts/diff/15337.up new file mode 100644 index 00000000..be6efd1f --- /dev/null +++ b/db_scripts/diff/15337.up @@ -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';