Exemplo n.º 1
0
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->repository->setSource($this->input->getOption('database'));
     $this->repository->createRepository();
     $this->info('Migration table created successfully.');
 }
Exemplo n.º 2
0
 /**
  * Determine if the migration repository exists.
  *
  * @return bool
  */
 public function repositoryExists()
 {
     return $this->repository->repositoryExists();
 }