From ef1c87d5188402a8a841f0e375f0762b74b897d3 Mon Sep 17 00:00:00 2001 From: Karsten Nowak Date: Mon, 29 Dec 2025 10:15:03 +0100 Subject: [PATCH] [BUGFIX] Replace old methods for retrieving sys_log table schema --- Classes/Updates/v11/SysLogChannel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Classes/Updates/v11/SysLogChannel.php b/Classes/Updates/v11/SysLogChannel.php index b2572a9..200d795 100644 --- a/Classes/Updates/v11/SysLogChannel.php +++ b/Classes/Updates/v11/SysLogChannel.php @@ -66,8 +66,8 @@ public function executeUpdate(): bool } // Ensure the level field is a varchar, otherwise we are in trouble when logging into TYPO3 Backend. - $table = $this->sysLogTable->getSchemaInformation()->introspectTable('sys_log'); - if (!$table->getColumn('level')->getType() instanceof StringType) { + $table = $this->sysLogTable->getSchemaInformation()->getTableInfo('sys_log'); + if (!$table->getColumnInfo('level')->getType() instanceof StringType) { $schema = $this->sysLogTable->createSchemaManager(); $schema->alterTable(new TableDiff( 'sys_log',