for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rougin\Refinery\Console;
/**
* Reset Command
*
* @package Refinery
* @author Rougin Gutib <[email protected]>
*/
class ResetCommand extends ChangeCommand
{
* @var string
protected $done = 'Rolled back: ';
protected $pending = 'Rolling back:';
* @var boolean
protected $reversed = true;
* Configures the current command.
* @return void
protected function configure()
$this->setName('reset')->setDescription('Resets the database schema version to 0');
}