diff --git a/lib/Doctrine/Migration.php b/lib/Doctrine/Migration.php index 0e2920861..641744b83 100644 --- a/lib/Doctrine/Migration.php +++ b/lib/Doctrine/Migration.php @@ -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 *