|
@@ -220,6 +220,7 @@
|
|
|
$z++;
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_enabled";
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
+ $apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false'];
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
$z++;
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "add_user";
|
|
@@ -346,7 +347,10 @@
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
$z++;
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_setting_enabled";
|
|
|
- $apps[$x]['db'][$y]['fields'][$z]['type'] = "text";
|
|
|
+ $apps[$x]['db'][$y]['fields'][$z]['type']['pgsql'] = "boolean";
|
|
|
+ $apps[$x]['db'][$y]['fields'][$z]['type']['sqlite'] = "text";
|
|
|
+ $apps[$x]['db'][$y]['fields'][$z]['type']['mysql'] = "text";
|
|
|
+ $apps[$x]['db'][$y]['fields'][$z]['toggle'] = ['true','false'];
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['description']['en-us'] = "";
|
|
|
$z++;
|
|
|
$apps[$x]['db'][$y]['fields'][$z]['name'] = "user_setting_description";
|