Add destination_actions to the destinations table.

This commit is contained in:
FusionPBX
2022-07-16 11:27:03 -06:00
committed by GitHub
parent 4f2987da2d
commit d9a9bbc8e0

View File

@@ -334,6 +334,12 @@
$apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Number is used for text messages.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_actions";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "json";
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Array of destination Actions.";
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_app";
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the application.";