Browse Source

Fixed typo in BaseMigrateController.php (#12033)

tags/2.0.10
Егор Малыгин 8 years ago committed by Paul Klimov
parent
commit
a2123d8bb9
  1. 2
      framework/console/controllers/BaseMigrateController.php

2
framework/console/controllers/BaseMigrateController.php

@ -257,7 +257,7 @@ abstract class BaseMigrateController extends Controller
}
foreach (array_reverse($migrations) as $migration) {
if (!$this->migrateUp($migration)) {
$this->stdout("\nMigration failed. The rest of the migrations migrations are canceled.\n", Console::FG_RED);
$this->stdout("\nMigration failed. The rest of the migrations are canceled.\n", Console::FG_RED);
return self::EXIT_CODE_ERROR;
}

Loading…
Cancel
Save