From 4e3bc5ccae2430c9c577fc7728bd801b0d1ccc64 Mon Sep 17 00:00:00 2001 From: Babak Alizadeh Date: Sat, 26 Apr 2025 23:43:13 +0000 Subject: [PATCH] bug fix in amount entity --- hesabixCore/src/Entity/HesabdariDoc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hesabixCore/src/Entity/HesabdariDoc.php b/hesabixCore/src/Entity/HesabdariDoc.php index 7ee2fc1..303caf4 100644 --- a/hesabixCore/src/Entity/HesabdariDoc.php +++ b/hesabixCore/src/Entity/HesabdariDoc.php @@ -50,7 +50,7 @@ class HesabdariDoc #[ORM\Column(length: 255, nullable: true)] private ?string $des = null; - #[ORM\Column(type: Types::INTEGER, nullable: true)] + #[ORM\Column(type: Types::BIGINT, nullable: true)] private ?int $amount = 0; #[ORM\ManyToOne]