mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
348 B
18 lines
348 B
13 years ago
|
<?php
|
||
13 years ago
|
class Mage_Task_BuiltIn_Symfony_Migrate
|
||
13 years ago
|
extends Mage_Task_TaskAbstract
|
||
|
{
|
||
|
public function getName()
|
||
|
{
|
||
|
return 'Symfony v1 - Run Migrations [built-in]';
|
||
|
}
|
||
13 years ago
|
|
||
13 years ago
|
public function run()
|
||
|
{
|
||
|
$command = 'symfony doctrine:migrate';
|
||
|
$result = $this->_runLocalCommand($command);
|
||
13 years ago
|
|
||
13 years ago
|
return $result;
|
||
|
}
|
||
13 years ago
|
}
|