Skip to content

Commit

Permalink
DbMigration: Break once a correct schema version is found
Browse files Browse the repository at this point in the history
  • Loading branch information
yhabteab committed May 6, 2024
1 parent c4c8ace commit 3cfd8c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions library/Reporting/ProvidedHook/DbMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ public function getVersion(): string
foreach ($schema as $version) {
if ($version->success) {
$this->version = $version->version;
break;
}
}

Expand Down

0 comments on commit 3cfd8c8

Please sign in to comment.