From b090067352b0ec13cc03e5fd5b6f0997a603bdc9 Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Tue, 9 Sep 2014 09:43:06 +0000 Subject: [PATCH] Fax log add fax_uuid --- app/fax_logs/app_config.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/fax_logs/app_config.php b/app/fax_logs/app_config.php index ca73f06fcb..1e0ecfb26f 100755 --- a/app/fax_logs/app_config.php +++ b/app/fax_logs/app_config.php @@ -54,6 +54,12 @@ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)'; $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary'; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_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)'; + $apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'fax_success'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'fax_success';