Allow more characters for maritalstatus id

This commit is contained in:
2025-05-14 13:56:36 +02:00
parent 4a8d298ae5
commit af36eccfaf
2 changed files with 37 additions and 1 deletions

View File

@@ -22,7 +22,7 @@ use Doctrine\ORM\Mapping as ORM;
class MaritalStatus
{
#[ORM\Id]
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING, length: 7)]
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::STRING, length: 15)]
private ?string $id;
#[ORM\Column(type: \Doctrine\DBAL\Types\Types::JSON)]