diff --git a/app/system/app_config.php b/app/system/app_config.php index 0985a4649f..e2fe4fdf2e 100644 --- a/app/system/app_config.php +++ b/app/system/app_config.php @@ -87,6 +87,13 @@ $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; $apps[$x]['db'][$y]['fields'][$z]['deprecated'] = "true"; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_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"; + $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = ""; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name']['text'] = "software_name"; $apps[$x]['db'][$y]['fields'][$z]['name']['deprecated'] = "softwarename"; $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";