Skip to content

Commit 0c97643

Browse files
committed
Use proper variable name
1 parent eb0d6d1 commit 0c97643

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Services/DatabaseMigration.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -690,19 +690,19 @@ private function version20250917163000(): void
690690

691691
private function version20251021000001(): void
692692
{
693-
$clientTableName = $this->database->applyPrefix(AuthCodeRepository::TABLE_NAME);
693+
$authCodeTableName = $this->database->applyPrefix(AuthCodeRepository::TABLE_NAME);
694694
$this->database->write(<<< EOT
695-
ALTER TABLE {$clientTableName}
695+
ALTER TABLE {$authCodeTableName}
696696
ADD issuer_state TEXT NULL
697697
EOT
698698
,);
699699
}
700700

701701
private function version20251021000002(): void
702702
{
703-
$clientTableName = $this->database->applyPrefix(AccessTokenRepository::TABLE_NAME);
703+
$accessTokenTableName = $this->database->applyPrefix(AccessTokenRepository::TABLE_NAME);
704704
$this->database->write(<<< EOT
705-
ALTER TABLE {$clientTableName}
705+
ALTER TABLE {$accessTokenTableName}
706706
ADD issuer_state TEXT NULL
707707
EOT
708708
,);

0 commit comments

Comments
 (0)