TT#108066 add 'emergency_provider_info' as domain pref

XML blob to be added for NoTruf 2.0

Change-Id: Id56ae847e633d6bd703a28a5409b588aae6bd985
mr9.4
Victor Seva 5 years ago
parent 03f4dd7086
commit 0ad0181ce2

@ -0,0 +1,3 @@
use provisioning;
DELETE FROM voip_preferences attribute = 'emergency_provider_info';

@ -0,0 +1,17 @@
USE provisioning;
SET autocommit=0;
SELECT id into @vpg_id FROM voip_preference_groups where name = 'Internals';
INSERT INTO voip_preferences
SET
voip_preference_groups_id = @vpg_id,
attribute = "emergency_provider_info",
label = "Emergency Provider info",
type = 2,
max_occur = 1,
dom_pref = 1,
data_type = "blob",
description = "XML with the ProviderInfo data that will be added as MIME object on an emergency call";
COMMIT;
Loading…
Cancel
Save