Commit d0ee6cd1 authored by gnat's avatar gnat

pre/post Up/Down methods

parent 589e2314
......@@ -325,22 +325,26 @@ class Doctrine_Migration
*/
protected function _doMigrate($direction)
{
if ( ! method_exists($this, $direction)) {
return;
}
$method = 'pre'.$direction;
$this->$method();
if ( method_exists($this, $direction)) {
$this->$direction();
foreach ($this->_changes as $type => $changes) {
$process = new Doctrine_Migration_Process();
if ( ! empty($changes)) {
$funcName = 'process' . Doctrine::classify($type);
if ( ! empty($changes)) {
$process = new Doctrine_Migration_Process();
$process->$funcName($changes);
}
}
}
$method = 'post'.$direction;
$this->$method();
}
/**
* migrate
*
......@@ -580,4 +584,45 @@ class Doctrine_Migration
$this->_addChange('removed_indexes', $options);
}
/**
* preUp
*
* @return void
*/
public function preUp()
{
return;
}
/**
* postUp
*
* @return void
*/
public function postUp()
{
return;
}
/**
* preDown
*
* @return void
*/
public function preDown()
{
return;
}
/**
* postDown
*
* @return void
*/
public function postDown()
{
return;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment