JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbrmigrator = app('migrator'); $this->migration_list = collect($this->migrator->paths()); } public function executeAction($name): void { $module = $this->getModuleModel($name); $this->components->twoColumnDetail("Running Migration {$module->getName()} Module"); $module_path = $module->getPath(); $paths = $this->migration_list ->filter(fn ($path) => str_starts_with($path, $module_path)); $this->call('migrate', array_filter([ '--path' => $paths->toArray(), '--database' => $this->option('database'), '--pretend' => $this->option('pretend'), '--force' => $this->option('force'), '--realpath' => true, ])); if ($this->option('seed')) { $this->call('module:seed', ['module' => $module->getName(), '--force' => $this->option('force')]); } } /** * Get the console command options. * * @return array */ protected function getOptions() { return [ ['direction', 'd', InputOption::VALUE_OPTIONAL, 'The direction of ordering.', 'asc'], ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'], ['pretend', null, InputOption::VALUE_NONE, 'Dump the SQL queries that would be run.'], ['force', null, InputOption::VALUE_NONE, 'Force the operation to run when in production.'], ['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'], ['subpath', null, InputOption::VALUE_OPTIONAL, 'Indicate a subpath to run your migrations from'], ]; } }