We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c071b0 commit 81c788fCopy full SHA for 81c788f
app/Console/Commands/UpgradeCommand.php
@@ -68,7 +68,7 @@ public function handle()
68
);
69
}
70
71
-
+
72
if (is_null($this->option('group'))) {
73
$groupDetails = posix_getgrgid(filegroup('public'));
74
$group = $groupDetails['name'] ?? 'www-data';
@@ -150,8 +150,8 @@ public function handle()
150
});
151
152
$this->withProgress($bar, function () {
153
- $this->line('$upgrader> php artisan migrate --seed --force');
154
- $this->call('migrate', ['--seed' => '', '--force' => '']);
+ $this->line('$upgrader> php artisan migrate --force --seed');
+ $this->call('migrate', ['--force' => true, '--seed' => true]);
155
156
157
$this->withProgress($bar, function () use ($user, $group) {
0 commit comments