remove NOT NULL for User::usernamecanonical

This commit is contained in:
2021-09-06 14:50:52 +02:00
parent 9b38e486df
commit b4e78a948b
2 changed files with 2 additions and 2 deletions

View File

@@ -44,7 +44,8 @@ class User implements AdvancedUserInterface {
* @ORM\Column(
* type="string",
* length=80,
* unique=true)
* unique=true,
* nullable=true)
*/
private $usernameCanonical;