for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Rougin\Refinery\Console;
/**
* Migrate Command
*
* @package Refinery
* @author Rougin Royce Gutib <[email protected]>
*/
class MigrateCommand extends ChangeCommand
{
* @var string
protected $done = 'Migrated: ';
protected $pending = 'Migrating:';
* @var boolean
protected $reversed = false;
* Configures the current command.
* @return void
protected function configure()
$this->setName('migrate')->setDescription('Migrates to the latest schema version');
}