Email Queue Attachments - Add CID and Mime Type fields.

This commit is contained in:
fusionate
2023-04-12 20:06:41 +00:00
parent 2d2c5fc06e
commit 19e58af546
3 changed files with 105 additions and 53 deletions

View File

@@ -219,6 +219,10 @@
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['table'] = 'v_email_queue';
$apps[$x]['db'][$y]['fields'][$z]['key']['reference']['field'] = 'email_queue_uuid';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'email_attachment_mime_type';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'email_attachment_type';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
@@ -235,6 +239,10 @@
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = 'email_attachment_cid';
$apps[$x]['db'][$y]['fields'][$z]['type'] = 'text';
$apps[$x]['db'][$y]['fields'][$z]['search_by'] = '';
$z++;
$apps[$x]['db'][$y]['fields'][$z]['name'] = "insert_date";
$apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'timestamptz';
$apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'date';