From a87d479e828ebbb9538c752621fc436b49efcf4b Mon Sep 17 00:00:00 2001 From: Babak Alizadeh Date: Fri, 18 Jul 2025 04:06:15 +0000 Subject: [PATCH] bug fix in registry --- hesabixCore/src/Entity/Registry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hesabixCore/src/Entity/Registry.php b/hesabixCore/src/Entity/Registry.php index 7d8db42d..c9d5a822 100644 --- a/hesabixCore/src/Entity/Registry.php +++ b/hesabixCore/src/Entity/Registry.php @@ -19,7 +19,7 @@ class Registry #[ORM\Column(length: 255)] private ?string $name = null; - #[ORM\Column(length: 255)] + #[ORM\Column(type: "text", nullable: true)] private ?string $valueOfKey = null; public function getId(): ?int