1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 06:04:03 +00:00

#1364 clean migration output

This commit is contained in:
Amimul Ehshan 2025-06-13 16:50:19 +06:00 committed by GitHub
parent d98a170fbd
commit b0b86355f1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,8 +31,10 @@ class MigrateDatabase implements ShouldQueue
*/ */
public function handle() public function handle()
{ {
ob_start();
Artisan::call('tenants:migrate', [ Artisan::call('tenants:migrate', [
'--tenants' => [$this->tenant->getTenantKey()], '--tenants' => [$this->tenant->getTenantKey()],
]); ]);
ob_end_clean();
} }
} }