Skip to content

Commit

Permalink
[TASK] Replace deprecated schema manager method
Browse files Browse the repository at this point in the history
Needed for TYPO3 13.4.
  • Loading branch information
fnagel committed Oct 27, 2024
1 parent c84978a commit e7e8e37
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 e7e8e37

Please sign in to comment.