diff --git a/app/Console/Commands/UpgradeCommand.php b/app/Console/Commands/UpgradeCommand.php index db0e23fd4..feb21ec60 100644 --- a/app/Console/Commands/UpgradeCommand.php +++ b/app/Console/Commands/UpgradeCommand.php @@ -68,7 +68,7 @@ class UpgradeCommand extends Command ); } } - + if (is_null($this->option('group'))) { $groupDetails = posix_getgrgid(filegroup('public')); $group = $groupDetails['name'] ?? 'www-data'; @@ -150,8 +150,8 @@ class UpgradeCommand extends Command }); $this->withProgress($bar, function () { - $this->line('$upgrader> php artisan migrate --seed --force'); - $this->call('migrate', ['--seed' => '', '--force' => '']); + $this->line('$upgrader> php artisan migrate --force --seed'); + $this->call('migrate', ['--force' => true, '--seed' => true]); }); $this->withProgress($bar, function () use ($user, $group) {