increase email string length to 64

This commit is contained in:
Ryan Prather 2024-12-19 02:39:35 +00:00
parent a53a5d6b52
commit d7bddc0328

View File

@ -44,7 +44,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface
#[ORM\Column(length: 45)]
private ?string $name = null;
#[ORM\Column(length: 45)]
#[ORM\Column(length: 64)]
private ?string $email = null;
#[ORM\Column(enumType: RateType::class)]