'Set migration namespace', '-g' => 'Set database group', '-all' => 'Set latest for all namespace, will ignore (-n) option', ]; /** * Does a rollback followed by a latest to refresh the current state * of the database. * * @param array $params */ public function run(array $params = []) { $this->call('migrate:rollback', ['-b' => 0]); $this->call('migrate'); } }