From 2668ea28df8b010992461483fdfaa4778348127e Mon Sep 17 00:00:00 2001 From: Mark Crane Date: Fri, 13 Sep 2013 07:52:25 +0000 Subject: [PATCH] Add the basic fields to use in the App Manager. --- core/apps/app_config.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/core/apps/app_config.php b/core/apps/app_config.php index 3a4d1643d9..97366f9985 100644 --- a/core/apps/app_config.php +++ b/core/apps/app_config.php @@ -60,5 +60,17 @@ $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'] = 'app_category'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'app_version'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'app_enabled'; + $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; + $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; + $z++; ?> \ No newline at end of file