芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/cloud.pulsehost.co.uk/system/Console/Commands/Migrations/InstallCommand.php
repository = $repository; } protected function configure(): void { $this->setName('migrate:install') ->setDescription('Create the migration repository') ->addOption('database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use'); } protected function execute(InputInterface $input, OutputInterface $output): int { $this->repository->setSource($input->getOption('database')); $this->repository->createRepository(); $output->writeln('Migration table created successfully.'); return Command::SUCCESS; } }