Files
Magallanes/Mage/Task/BuiltIn/Symfony1/Migrate.php
T

18 lines
349 B
PHP
Raw Normal View History

2012-03-27 20:13:49 -03:00
<?php
2012-09-23 19:38:47 -03:00
class Mage_Task_BuiltIn_Symfony1_Migrate
2012-03-27 20:13:49 -03:00
extends Mage_Task_TaskAbstract
{
public function getName()
{
return 'Symfony v1 - Run Migrations [built-in]';
}
2012-06-26 20:01:11 -03:00
2012-03-27 20:13:49 -03:00
public function run()
{
$command = 'symfony doctrine:migrate';
$result = $this->_runLocalCommand($command);
2012-06-26 20:01:11 -03:00
2012-03-27 20:13:49 -03:00
return $result;
}
2012-06-26 20:01:11 -03:00
}