diff --git a/app/extensions/app_config.php b/app/extensions/app_config.php index 2067e7439b..74a3947527 100644 --- a/app/extensions/app_config.php +++ b/app/extensions/app_config.php @@ -256,6 +256,12 @@ $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en'] = ''; $z++; + $apps[$x]['db'][$y]['fields'][$z]['name'] = 'follow_me_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'] = 'primary'; + $z++; $apps[$x]['db'][$y]['fields'][$z]['name'] = 'enabled'; $apps[$x]['db'][$y]['fields'][$z]['type'] = 'text'; $apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = '';