Table name may be different than just tablelize class name
For example, for class User, the table name is entity
This commit is contained in:
parent
0de326b577
commit
49053d654f
1 changed files with 3 additions and 1 deletions
|
@ -180,7 +180,9 @@ class Doctrine_UnitTestCase extends UnitTestCase
|
||||||
}
|
}
|
||||||
public function prepareTables() {
|
public function prepareTables() {
|
||||||
foreach($this->tables as $name) {
|
foreach($this->tables as $name) {
|
||||||
$query = 'DROP TABLE ' . Doctrine::tableize($name);
|
$name = ucwords($name);
|
||||||
|
$table = $this->connection->getTable($name);
|
||||||
|
$query = 'DROP TABLE ' . $table->getTableName();
|
||||||
try {
|
try {
|
||||||
$this->conn->exec($query);
|
$this->conn->exec($query);
|
||||||
} catch(Doctrine_Connection_Exception $e) {
|
} catch(Doctrine_Connection_Exception $e) {
|
||||||
|
|
Loading…
Add table
Reference in a new issue