Added basic fields and migration for MySQL

This commit is contained in:
Jan Böhmer 2023-04-02 19:10:36 +02:00
parent e7e57fa412
commit 047c82791b
4 changed files with 138 additions and 0 deletions

View file

@ -103,6 +103,13 @@ class User extends AttachmentContainingDBElement implements UserInterface, HasPe
*/
protected string $instock_comment_w = '';
/**
* @var string A self-description of the user
* @ORM\Column(type="text", options={"default": ""})
* @Groups({"full", "import"})
*/
protected string $aboutMe = '';
/** @var int The version of the trusted device cookie. Used to invalidate all trusted device cookies at once.
* @ORM\Column(type="integer")
*/