setName('tenants:migrate-fresh'); } /** * Execute the console command. * * @return mixed */ public function handle() { tenancy()->runForMultiple($this->option('tenants'), function ($tenant) { $this->info('Dropping tables.'); $this->call('db:wipe', array_filter([ '--database' => 'tenant', '--force' => true, ])); $this->info('Migrating.'); $this->callSilent('tenants:migrate', [ '--tenants' => [$tenant->getTenantKey()], '--force' => true, ]); }); $this->info('Done.'); } }