mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-28 10:08:56 +02:00
Renamed Symfony1 tasks.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
class Mage_Task_BuiltIn_Symfony_Migrate
|
||||
extends Mage_Task_TaskAbstract
|
||||
{
|
||||
public function getName()
|
||||
{
|
||||
return 'Symfony v1 - Run Migrations [built-in]';
|
||||
}
|
||||
|
||||
public function run()
|
||||
{
|
||||
$command = 'symfony doctrine:migrate';
|
||||
$result = $this->_runLocalCommand($command);
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user