diff --git a/app/fax_queue/app_config.php b/app/fax_queue/app_config.php index b3b6b9ba08..96667bc11d 100644 --- a/app/fax_queue/app_config.php +++ b/app/fax_queue/app_config.php @@ -152,9 +152,22 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz'; $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date'; $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date'; - $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '1'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Date the fax was retried'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_notify_sent'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'boolean'; + $apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false']; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = ''; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Fax notification sent. true,false'; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_notify_date'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'date'; + $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '1'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Date the fax notification was sent'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_retry_count'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'numeric'; $apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';