From c6707fc8357f5b5246f29d423f5ba22c8e754a4f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Sat, 6 Mar 2021 08:10:47 -0700 Subject: [PATCH] Add destination_order ot the destinations table. --- app/destinations/app_config.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/destinations/app_config.php b/app/destinations/app_config.php index 666cef6107..334e241324 100644 --- a/app/destinations/app_config.php +++ b/app/destinations/app_config.php @@ -319,6 +319,10 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Enter the alternate data."; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_order"; + $apps[$x]['db'][$y]['fields'][$z]['type'] = "numeric"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Set the destination order."; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "destination_enabled"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";