1
0
mirror of synced 2025-01-18 14:31:40 +03:00

Added getTableName() and setTableName()

This commit is contained in:
Jonathan.Wage 2007-11-07 01:41:50 +00:00
parent 89ce4a28ec
commit 3b898ca983

View File

@ -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
* *