From 937caa878e3f9b601a0efc3473260f0bd05b8c61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Wed, 13 Nov 2024 12:20:10 +0100 Subject: [PATCH] remove Date constraint on marital status date --- src/Bundle/ChillPersonBundle/Entity/Person.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Bundle/ChillPersonBundle/Entity/Person.php b/src/Bundle/ChillPersonBundle/Entity/Person.php index 5d24f3114..27a1a3f09 100644 --- a/src/Bundle/ChillPersonBundle/Entity/Person.php +++ b/src/Bundle/ChillPersonBundle/Entity/Person.php @@ -303,7 +303,6 @@ class Person implements HasCenterInterface, TrackCreationInterface, TrackUpdateI /** * The date of the last marital status change of the person. */ - #[Assert\Date] #[ORM\Column(type: \Doctrine\DBAL\Types\Types::DATE_MUTABLE, nullable: true)] private ?\DateTime $maritalStatusDate = null;