Add the basic fields to use in the App Manager.
This commit is contained in:
parent
e311c5a35f
commit
385242bf06
|
|
@ -60,5 +60,17 @@
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
|
$apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = 'char(36)';
|
||||||
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary';
|
$apps[$x]['db'][$y]['fields'][$z]['key']['type'] = 'primary';
|
||||||
$z++;
|
$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++;
|
||||||
|
|
||||||
?>
|
?>
|
||||||
Loading…
Reference in New Issue