Added new command : propel:migration:status

This commit is contained in:
William DURAND 2011-02-02 02:34:45 +01:00
parent 2da085cff9
commit e433716413

View file

@ -0,0 +1,51 @@
<?php
namespace Symfony\Bundle\PropelBundle\Command;
use Symfony\Bundle\PropelBundle\Command\PhingCommand;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
/*
* This file is part of the Symfony framework.
*
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
*
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
/**
* MigrationStatusCommand.
*
* @author William DURAND <william.durand1@gmail.com>
*/
class MigrationStatusCommand extends PhingCommand
{
/**
* @see Command
*/
protected function configure()
{
$this
->setDescription('Lists the migrations yet to be executed')
->setHelp(<<<EOT
The <info>propel:migration:status</info> command checks the version of the database structure, and looks for migration files not yet executed (i.e. with a greater version timestamp).
<info>php app/console propel:migration:status</info>
EOT
)
->setName('propel:migration:status')
;
}
/**
* @see Command
*
* @throws \InvalidArgumentException When the target directory does not exist
*/
protected function execute(InputInterface $input, OutputInterface $output)
{
$this->callPhing('status');
}
}