Skip to content

Instantly share code, notes, and snippets.

@blakethepatton
Created February 2, 2017 20:32
Show Gist options
  • Save blakethepatton/98a4fc00713e63db23187f72b0cd0f07 to your computer and use it in GitHub Desktop.
Save blakethepatton/98a4fc00713e63db23187f72b0cd0f07 to your computer and use it in GitHub Desktop.
Laravel migrator
<?PHP
$migrationRepository = app('migration.repository');
if (!$migrationRepository->repositoryExists())
{
$migrationRepository->createRepository();
}
$migrator = app('migrator');
$migrator->run(database_path('migrations'));
return response()->json(['notes' => $migrator->getNotes()]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment