From 80beb0070f296739a0247631fe830201755ffd74 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 1 Jun 2017 23:26:11 -0600 Subject: [PATCH] Update app_config.php --- app/database_transactions/app_config.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/app/database_transactions/app_config.php b/app/database_transactions/app_config.php index 47fd1de666..eac45f0eb5 100644 --- a/app/database_transactions/app_config.php +++ b/app/database_transactions/app_config.php @@ -83,15 +83,21 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Transaction date.'; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'transaction_old'; - $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'longtext'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Before the transaction.'; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'transaction_new'; - $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'longtext'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'After the transaction.'; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'transaction_result'; - $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'longtext'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = 'Result of the transaction.'; $z++;