Added NSFW compatibility

This commit is contained in:
2026-06-27 18:57:26 +02:00
parent 2222d88b1d
commit bb0658b0e5
9 changed files with 53 additions and 3 deletions

View File

@@ -12,6 +12,7 @@ class User extends XFCP_User
$structure = parent::getStructure($structure);
$structure->columns['rhpz_entry_count'] = [ 'type' => self::UINT, 'default' => 0 ];
$structure->columns['nsfw_content'] = [ 'type' => self::BOOL, 'default' => 0 ];
return $structure;
}