Commit 3b898ca9 authored by Jonathan.Wage's avatar Jonathan.Wage

Added getTableName() and setTableName()

parent 89ce4a28
...@@ -72,6 +72,27 @@ class Doctrine_Migration ...@@ -72,6 +72,27 @@ class Doctrine_Migration
} }
} }
/**
* getTableName
*
* @return void
*/
public function getTableName()
{
return $this->_migrationTableName;
}
/**
* setTableName
*
* @param string $tableName
* @return void
*/
public function setTableName($tableName)
{
$this->_migrationTableName = $tableName;
}
/** /**
* createMigrationTable * createMigrationTable
* *
......
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