Skip to content

Commit

Permalink
Fix parameter name in migration
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusklocke committed Feb 9, 2024
1 parent e57943d commit 9347d22
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/Version20240205204400.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ private function transformCredentials(callable $transformer): void

foreach ($this->connection->iterateAssociative($query) as $credential) {
$this->addSql(
'UPDATE `public_key_credentials` SET trust_path = :trustPath, aaguid = :aaguid WHERE id = :id',
'UPDATE `public_key_credentials` SET trust_path = :trust_path, aaguid = :aaguid WHERE id = :id',
[
'trust_path' => $transformer($credential['trust_path']),
'aaguid' => $transformer($credential['aaguid']),
Expand Down

0 comments on commit 9347d22

Please sign in to comment.