From 45af3a21b73b23c60b451b7df7e4f8faaf256390 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Fromme?= Date: Mon, 23 Mar 2026 19:23:59 +0100 Subject: [PATCH] chore: replace deprecated attribute --- src/Entity/LogEntry.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/LogEntry.php b/src/Entity/LogEntry.php index adc88aa..2af65a7 100644 --- a/src/Entity/LogEntry.php +++ b/src/Entity/LogEntry.php @@ -8,7 +8,7 @@ use App\Repository\LogEntryRepository; use Doctrine\ORM\Mapping as ORM; #[ORM\Entity(repositoryClass: LogEntryRepository::class)] -#[ORM\Table(indexes: [new ORM\Index(name: 'IDX_LOG_ENTRY_ERROR_CODE', columns: ['error_code'])])] +#[ORM\Index(name: 'IDX_LOG_ENTRY_ERROR_CODE', columns: ['error_code'])] class LogEntry { #[ORM\Id]