From 60eb7cde090c043dbaaf8ae77bf82cddd026db8b Mon Sep 17 00:00:00 2001 From: lordofthebrain Date: Fri, 27 Jun 2025 10:48:19 +0200 Subject: [PATCH] don't run migrate-fresh silent by default --- src/Commands/MigrateFresh.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Commands/MigrateFresh.php b/src/Commands/MigrateFresh.php index b626c775..1a12d51f 100644 --- a/src/Commands/MigrateFresh.php +++ b/src/Commands/MigrateFresh.php @@ -46,7 +46,7 @@ final class MigrateFresh extends Command ])); $this->info('Migrating.'); - $this->callSilent('tenants:migrate', [ + $this->call('tenants:migrate', [ '--tenants' => [$tenant->getTenantKey()], '--step' => $this->option('step'), '--force' => true,