/home/techb158/exp.abdallabala.com/vendor/illuminate/database/Console/Migrations
NameSizeModeActions
BaseCommand.php14500644editdlrm
FreshCommand.php42090644editdlrm
InstallCommand.php15760644editdlrm
MigrateCommand.php29650644editdlrm
MigrateMakeCommand.php43740644editdlrm
RefreshCommand.php45410644editdlrm
ResetCommand.php24690644editdlrm
RollbackCommand.php23080644editdlrm
StatusCommand.php31000644editdlrm
TableGuesser.php9030644editdlrm
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'], ]; } }