From fc93bda9c8cb566ee5b27e585cddabd4fb5ce218 Mon Sep 17 00:00:00 2001 From: chilladelia Date: Thu, 4 Dec 2025 08:35:46 +0100 Subject: [PATCH] Add GeneratedValue annotation to id property --- src/Entity/IndexQueue.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Entity/IndexQueue.php b/src/Entity/IndexQueue.php index 99758983..09f04a6f 100644 --- a/src/Entity/IndexQueue.php +++ b/src/Entity/IndexQueue.php @@ -29,6 +29,7 @@ class IndexQueue public const TABLE = 'generic_data_index_queue'; #[ORM\Id] + #[ORM\GeneratedValue] #[ORM\Column(type: 'bigint')] private int $id;