Add command to execute all of the normal upgrade commands for the application

This commit is contained in:
Dane Everitt
2021-01-23 15:52:57 -08:00
parent fa9431c54d
commit 6f3ea462a7
4 changed files with 122 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ trait RequiresDatabaseMigrations
* them to properly run the migrations rather than ignoring all of the other previous
* errors...
*/
protected function showMigrationWarning(): int
protected function showMigrationWarning()
{
$this->getOutput()->writeln('<options=bold>
| @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ |
@@ -51,7 +51,5 @@ database state by running the command above.
');
$this->getOutput()->error('You must correct the error above before continuing.');
return 1;
}
}