Skip to content

Commit

Permalink
[FIX] Update schema manager usage in upgrade wizards
Browse files Browse the repository at this point in the history
Needed for TYPO3 13.3.
  • Loading branch information
fnagel committed Sep 19, 2024
1 parent ed7d1ab commit c7718ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/UpgradeWizard/AbstractUpgradeWizard.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected function isFieldAvailable(string $table, string $field): bool
{
return array_key_exists(
$field,
$this->connectionPool->getConnectionForTable($table)->getSchemaManager()->listTableColumns($table)
$this->connectionPool->getConnectionForTable($table)->createSchemaManager()->listTableColumns($table)
);
}
}

0 comments on commit c7718ac

Please sign in to comment.