This commit is contained in:
Dennis
2022-04-09 07:54:47 +02:00
parent e2a58cf2df
commit 2a3d9cabd0
2 changed files with 4 additions and 4 deletions

View File

@@ -202,9 +202,9 @@ class Install extends Command
{
if (!config('app.key')) {
$this->call('key:generate');
}
$this->info('Application key has been set');
$this->info('Application key has been set');
}
}
protected function checkApplicationUrl()
@@ -315,7 +315,7 @@ class Install extends Command
protected function runDatabaseMigrations()
{
$this->info('Running database migrations..');
$this->call('migrate');
$this->call('migrate', ['--force' => true]);
$this->info('Database migrations successful');
}