Skip to content

Commit

Permalink
2288 - Add migration version and name to pending actions error
Browse files Browse the repository at this point in the history
  • Loading branch information
ajibarra committed Jun 7, 2024
1 parent 69eaf20 commit 3578775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Phinx/Migration/AbstractMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ public function postFlightCheck(): void
{
foreach ($this->tables as $table) {
if ($table->hasPendingActions()) {
throw new RuntimeException('Migration has pending actions after execution!');
throw new RuntimeException(sprintf('Migration %s_%s has pending actions after execution!', $this->getVersion(), $this->getName()));
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/Phinx/Migration/AbstractMigrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ public function testPostFlightCheckFail()
$table->addColumn('column1', 'integer', ['null' => true]);

$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Migration has pending actions after execution!');
$this->expectExceptionMessage(sprintf('Migration %s_%s has pending actions after execution!', $migrationStub->getVersion(), $migrationStub->getName()));

$migrationStub->postFlightCheck();
}
Expand Down

0 comments on commit 3578775

Please sign in to comment.