From 3b898ca983d8607c849d26d3fee0fd705b9d09e5 Mon Sep 17 00:00:00 2001 From: "Jonathan.Wage" Date: Wed, 7 Nov 2007 01:41:50 +0000 Subject: [PATCH] Added getTableName() and setTableName() --- lib/Doctrine/Migration.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) 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 *