From 0ff21be23c92b5c71f7fda4fa3579ef7dd53b027 Mon Sep 17 00:00:00 2001 From: chansizzle <14916599+chansizzle@users.noreply.github.com> Date: Wed, 8 Jan 2020 13:26:13 -0700 Subject: [PATCH] Update app_config.php (#5023) --- app/database_transactions/app_config.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/database_transactions/app_config.php b/app/database_transactions/app_config.php index f7f9592b48..31a5bbe75a 100644 --- a/app/database_transactions/app_config.php +++ b/app/database_transactions/app_config.php @@ -76,6 +76,7 @@ $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "app_name"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Application name."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "app_uuid"; @@ -86,18 +87,22 @@ $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "transaction_code"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Transaction code."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "transaction_address"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "IP address of the user."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "transaction_type"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Type: add, update, delete, select"; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "transaction_date"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "timestamp"; + $apps[$x]['db'][$y]['fields'][$z]['search'] = 'true'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "Transaction date."; $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = "transaction_old";