TT#4638 domain level allowed_ips

Change-Id: I7ce8bcbca31a956574c74e8783a37ba1b49f29f4
(cherry picked from commit d6c0223870)
changes/42/9142/1
Rene Krenn 9 years ago
parent 40d08cc041
commit 9bf2aec6aa

@ -0,0 +1,10 @@
SET AUTOCOMMIT=0;
USE provisioning;
UPDATE voip_preferences SET dom_pref = 0 WHERE attribute = "allowed_ips_grp" AND dom_pref = 1;
UPDATE voip_preferences SET dom_pref = 0 WHERE attribute = "man_allowed_ips_grp" AND dom_pref = 1;
UPDATE voip_preferences SET dom_pref = 0 WHERE attribute = "allowed_ips" AND dom_pref = 1;
UPDATE voip_preferences SET dom_pref = 0 WHERE attribute = "man_allowed_ips" AND dom_pref = 1;
UPDATE voip_preferences SET dom_pref = 0 WHERE attribute = "ignore_allowed_ips" AND dom_pref = 1;
COMMIT;

@ -0,0 +1,10 @@
SET AUTOCOMMIT=0;
USE provisioning;
UPDATE voip_preferences SET dom_pref = 1 WHERE attribute = "allowed_ips_grp" AND dom_pref = 0;
UPDATE voip_preferences SET dom_pref = 1 WHERE attribute = "man_allowed_ips_grp" AND dom_pref = 0;
UPDATE voip_preferences SET dom_pref = 1 WHERE attribute = "allowed_ips" AND dom_pref = 0;
UPDATE voip_preferences SET dom_pref = 1 WHERE attribute = "man_allowed_ips" AND dom_pref = 0;
UPDATE voip_preferences SET dom_pref = 1 WHERE attribute = "ignore_allowed_ips" AND dom_pref = 0;
COMMIT;
Loading…
Cancel
Save