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/15223.up

14 lines
297 B

SET AUTOCOMMIT=0;
USE provisioning;
SELECT id INTO @vpid FROM voip_preferences
WHERE attribute = 'force_outbound_calls_to_peer';
INSERT INTO voip_preferences_enum VALUES (
NULL, @vpid, 'If callee is not local and is ported',
'force_nonlocal_lnp',
0, 0, 0, 1, NULL, 0
);
COMMIT;