MigrateRunCommand.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?php
  2. namespace catcher\command;
  3. use catcher\CatchAdmin;
  4. use think\console\Input;
  5. use think\console\input\Argument;
  6. use think\console\input\Option as InputOption;
  7. use think\console\Output;
  8. use think\migration\command\migrate\Run;
  9. class MigrateRunCommand extends Run
  10. {
  11. protected $module;
  12. public function configure()
  13. {
  14. $this->setName('catch-migrate:run')
  15. ->setDescription('Migrate the database')
  16. ->addArgument('module', Argument::REQUIRED, 'migrate the module database')
  17. ->addOption('--target', '-t', InputOption::VALUE_REQUIRED, 'The version number to migrate to')
  18. ->addOption('--date', '-d', InputOption::VALUE_REQUIRED, 'The date to migrate to')
  19. ->setHelp(<<<EOT
  20. The <info>migrate:run</info> command runs all available migrations, optionally up to a specific version
  21. <info>php think catch-migrate:run module</info>
  22. <info>php think catch-migrate:run module -t 20110103081132</info>
  23. <info>php think catch-migrate:run module -d 20110103</info>
  24. <info>php think catch-migrate:run -v</info>
  25. EOT
  26. );
  27. }
  28. protected function execute(Input $input, Output $output)
  29. {
  30. $this->module = strtolower($input->getArgument('module'));
  31. $version = $input->getOption('target');
  32. $date = $input->getOption('date');
  33. // run the migrations
  34. $start = microtime(true);
  35. if (null !== $date) {
  36. $this->migrateToDateTime(new \DateTime($date));
  37. } else {
  38. $this->migrate($version);
  39. }
  40. $end = microtime(true);
  41. // 重置 migrations 在循环冲无法重复使用
  42. $this->migrations = null;
  43. $output->writeln('');
  44. $output->writeln('<comment>All Done. Took ' . sprintf('%.4fs', $end - $start) . '</comment>');
  45. }
  46. /**
  47. * 获取 migration path
  48. *
  49. * @time 2019年12月03日
  50. * @param $module
  51. * @return string
  52. */
  53. protected function getPath()
  54. {
  55. return CatchAdmin::moduleMigrationsDirectory($this->module);
  56. }
  57. }