From 3fa9f29c867580834892c53b0c66fa8af06797c2 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 27 Apr 2022 23:27:12 -0600 Subject: [PATCH] Add origination_uuid to the fax_queue table. --- app/fax_queue/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/fax_queue/app_config.php b/app/fax_queue/app_config.php index 1fa6cdc8e8..639ea0ff21 100644 --- a/app/fax_queue/app_config.php +++ b/app/fax_queue/app_config.php @@ -101,6 +101,11 @@ $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ''; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'origination_uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'uuid'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_date'; $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz'; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';