fix: allow three chars for size property in teamer entity

This commit is contained in:
Björn Fromme
2026-03-15 12:42:28 +01:00
parent 9b35703155
commit efcf52e718
2 changed files with 32 additions and 1 deletions
+1 -1
View File
@@ -128,7 +128,7 @@ class Teamer implements TimestampableEntityInterface
#[Assert\NotBlank(message: 'Bitte gib deine Sprache(n) an', groups: ['profile', 'profile_preflight'])]
private ?string $language = null;
#[ORM\Column(length: 2, nullable: true)]
#[ORM\Column(length: 3, nullable: true)]
private ?string $size = null;
#[ORM\Column(nullable: true)]