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/DatabaseStatusCommand.php
2016-07-30 15:48:09 +02:00

51 lines
1.2 KiB
PHP

<?php
/**
* Holds the migration status command controller.
*
* @package Sakura
*/
namespace Sakura\Console\Command;
use CLIFramework\Command;
use CLIFramework\Component\Table\Table;
use Illuminate\Database\Migrations\Migrator;
use Illuminate\Filesystem\Filesystem;
use Sakura\DB;
class DatabaseStatusCommand extends Command
{
const MIGRATIONS = "database/";
public function brief()
{
return 'Show the status of each migration';
}
public function execute()
{
$repository = DB::getMigrationRepository();
$migrator = new Migrator($repository, $repository->getConnectionResolver(), new Filesystem);
if (!$migrator->repositoryExists()) {
$this->getLogger()->writeln("No migrations found!");
return;
}
$ran = $repository->getRan();
$migrations = new Table;
$migrations->setHeaders([
'Ran?',
'Migration',
]);
foreach ($migrator->getMigrationFiles(ROOT . self::MIGRATIONS) as $migration) {
$migrations->addRow([in_array($migration, $ran) ? 'Y' : 'N', $migration]);
}
$this->getLogger()->write($migrations->render());
}
}