From 953f4e74a2d765fc32e06829feb886cbbda66b40 Mon Sep 17 00:00:00 2001 From: BentiGorlich Date: Mon, 9 Dec 2024 17:28:27 +0100 Subject: [PATCH] Make applicationText nullable (#1276) --- src/Entity/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/User.php b/src/Entity/User.php index b1c191ef0b..7f391af90b 100644 --- a/src/Entity/User.php +++ b/src/Entity/User.php @@ -243,7 +243,7 @@ class User implements UserInterface, PasswordAuthenticatedUserInterface, Visibil public string $type; #[Column(type: 'text', nullable: true)] - public string $applicationText; + public ?string $applicationText; #[Column(type: 'enumApplicationStatus', nullable: false, options: ['default' => EApplicationStatus::Approved->value])] private string $applicationStatus;