Added getTableName() and setTableName()
This commit is contained in:
parent
89ce4a28ec
commit
3b898ca983
@ -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
|
||||||
*
|
*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user