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

47 lines
1.1 KiB
PHP
Raw Normal View History

<?php
/**
* Holds the migration repository installer command controller.
* @package Sakura
*/
namespace Sakura\Console\Command;
use CLIFramework\Command;
2016-07-30 13:48:09 +00:00
use Illuminate\Database\Migrations\Migrator;
use Illuminate\Filesystem\Filesystem;
use Sakura\DB;
2016-08-05 02:35:37 +00:00
/**
* Installs the database migration repository.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class DatabaseInstallCommand extends Command
{
2016-08-05 02:35:37 +00:00
/**
* A quick description of this command.
* @return string.
*/
2016-12-04 16:33:52 +00:00
public function brief(): string
{
return 'Create the migration repository';
}
2016-08-05 02:35:37 +00:00
/**
* Does the repository installing.
*/
2016-12-04 16:33:52 +00:00
public function execute(): void
{
$repository = DB::getMigrationRepository();
2016-07-30 13:48:09 +00:00
$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!");
}
}