From 4e08ca80299b0ab3075eae59914766680973ed6b Mon Sep 17 00:00:00 2001 From: Joeri van Veen Date: Tue, 9 Jul 2024 14:21:59 +0200 Subject: [PATCH] fix: prevent integrity constraint violation for notes column INT-551 --- src/Entity/MyparcelnlOrderData.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/MyparcelnlOrderData.php b/src/Entity/MyparcelnlOrderData.php index 922dd46f..fbf50c4c 100755 --- a/src/Entity/MyparcelnlOrderData.php +++ b/src/Entity/MyparcelnlOrderData.php @@ -20,7 +20,7 @@ class MyparcelnlOrderData extends AbstractEntity implements EntityWithTimestamps /** * @var string - * @ORM\Column(name="notes", type="text") + * @ORM\Column(name="notes", type="text", nullable=true) */ private $notes;