From f39edbee0ed6ca4b16215fa1fd5bd1cfd4644ce4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ata=20Berk=20Y=C4=B1lmaz?= Date: Fri, 18 Jun 2021 15:27:25 +0200 Subject: [PATCH] Added nullable property to error_details column (#171) --- Models/Notification.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Models/Notification.php b/Models/Notification.php index 8321d120..6a457294 100644 --- a/Models/Notification.php +++ b/Models/Notification.php @@ -102,7 +102,7 @@ class Notification extends ModelEntity implements \JsonSerializable /** * @var string - * @ORM\Column(name="error_details", type="text") + * @ORM\Column(name="error_details", type="text", nullable=true) */ private $errorDetails;