/home/techb158/exp.abdallabala.com/vendor/illuminate/database/Console/Migrations
Edit: /home/techb158/exp.abdallabala.com/vendor/illuminate/database/Console/Migrations/InstallCommand.php (1576B)
repository = $repository;
}
/**
* Execute the console command.
*
* @return void
*/
public function handle()
{
$this->repository->setSource($this->input->getOption('database'));
$this->repository->createRepository();
$this->info('Migration table created successfully.');
}
/**
* Get the console command options.
*
* @return array
*/
protected function getOptions()
{
return [
['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use'],
];
}
}