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';