diff --git a/app/Console/Commands/ExecuteInstallation.php b/app/Console/Commands/ExecuteInstallation.php index f645cdf2..26122cd5 100644 --- a/app/Console/Commands/ExecuteInstallation.php +++ b/app/Console/Commands/ExecuteInstallation.php @@ -13,6 +13,11 @@ class ExecuteInstallation extends Command public function handle() { + if (\App\Http\Controllers\SetupController::checkTablesExist()) { + $this->info('You have installed Blessing Skin Server. Nothing to do.'); + return; + } + $this->call('key:random'); $this->call('salt:random'); $this->call('migrate', ['--force' => true]);