From 2d397e4dc4a55b62ee4abe6330bca340e0dc21fe Mon Sep 17 00:00:00 2001 From: Michel Date: Fri, 8 Nov 2024 13:50:08 +0100 Subject: [PATCH] Made fromWhere nullable --- src/php/Entities/Games/Key.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/php/Entities/Games/Key.php b/src/php/Entities/Games/Key.php index 8d79009..5cd505f 100644 --- a/src/php/Entities/Games/Key.php +++ b/src/php/Entities/Games/Key.php @@ -26,7 +26,7 @@ class Key implements JsonSerializable private Store $store; #[ORM\Column(nullable: true)] private string|null $storeLink; - #[ORM\Column] + #[ORM\Column(nullable: true)] private string|null $fromWhere; #[ORM\Column(type: 'integer', enumType: KeyState::class)] private KeyState $state;