/**
  * @return void
  */
 protected function prepareDatabase()
 {
     $this->migrator->setConnection($this->input->getOption('database'));
     if (!$this->migrator->repositoryExists()) {
         $options = ['--database' => $this->input->getOption('database')];
         $this->call('migrate:install', $options);
     }
 }
 /**
  * @return void
  */
 public function fire()
 {
     $this->migrator->setConnection($this->input->getOption('database'));
     $pretend = $this->input->getOption('pretend');
     $this->migrator->rollback($pretend);
     foreach ($this->migrator->getNotes() as $note) {
         $this->output->writeln($note);
     }
 }
示例#3
0
 /**
  * Execute the console command.
  * @return void
  */
 public function fire()
 {
     $this->migrator->setConnection($this->input->getOption('database'));
     if (!$this->migrator->repositoryExists()) {
         $this->output->writeln('<comment>Migration table not found.</comment>');
         return;
     }
     $pretend = $this->input->getOption('pretend');
     $this->migrator->reset($pretend);
     foreach ($this->migrator->getNotes() as $note) {
         $this->output->writeln($note);
     }
 }
示例#4
0
 /**
  * Execute the console command.
  * @return void
  */
 public function fire()
 {
     if (!$this->migrator->repositoryExists()) {
         return $this->error('No migrations found.');
     }
     $this->migrator->setConnection($this->input->getOption('database'));
     if (!is_null($path = $this->input->getOption('path'))) {
         $path = $this->notadd->basePath() . '/' . $path;
     } else {
         $path = $this->getMigrationPath();
     }
     $ran = $this->migrator->getRepository()->getRan();
     $migrations = [];
     foreach ($this->getAllMigrationFiles($path) as $migration) {
         $migrations[] = in_array($migration, $ran) ? ['<info>Y</info>', $migration] : ['<fg=red>N</fg=red>', $migration];
     }
     if (count($migrations) > 0) {
         $this->table(['Ran?', 'Migration'], $migrations);
     } else {
         $this->error('No migrations found');
     }
 }