Small fixes.

This commit is contained in:
James Cole
2019-01-03 19:01:32 +01:00
parent 577f024310
commit b245facdfe
2 changed files with 3 additions and 3 deletions

View File

@@ -138,7 +138,7 @@ class InstallController extends Controller
}
try {
Log::debug('Am now calling upgrade database routine...');
Artisan::call('firefly:upgrade-database');
Artisan::call('firefly:upgrade-database', ['--force' => true]);
Log::debug(Artisan::output());
} catch (Exception $e) {
Log::error($e->getMessage());
@@ -165,7 +165,7 @@ class InstallController extends Controller
}
try {
Log::debug('Am now calling verify database routine...');
Artisan::call('firefly:verify');
Artisan::call('firefly:verify', ['--force' => true]);
Log::debug(Artisan::output());
} catch (Exception $e) {
Log::error($e->getMessage());