askToRunMigrations = true; return $this; } protected function processAskToRunMigrations(): self { if ($this->askToRunMigrations) { if ($this->confirm('Would you like to run the migrations now?')) { $this->comment('Running migrations...'); $this->call('migrate'); } } return $this; } }