You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
db-schema/db_scripts/diff/15663.up

18 lines
432 B

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;