This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Console/Command/DatabaseInstallCommand.php
2016-07-30 15:48:09 +02:00

36 lines
873 B
PHP

<?php
/**
* Holds the migration repository installer command controller.
*
* @package Sakura
*/
namespace Sakura\Console\Command;
use CLIFramework\Command;
use Illuminate\Database\Migrations\Migrator;
use Illuminate\Filesystem\Filesystem;
use Sakura\DB;
class DatabaseInstallCommand extends Command
{
public function brief()
{
return 'Create the migration repository';
}
public function execute()
{
$repository = DB::getMigrationRepository();
$migrator = new Migrator($repository, $repository->getConnectionResolver(), new Filesystem);
if ($migrator->repositoryExists()) {
$this->getLogger()->writeln("The migration repository already exists!");
return;
}
$repository->createRepository();
$this->getLogger()->writeln("Created the migration repository!");
}
}