Prevent Doctrine from quoting two times table name, bug report by g00fy on irc
This commit is contained in:
parent
7fc767794e
commit
9b7c743f48
@ -228,8 +228,7 @@ class Doctrine_Export extends Doctrine_Connection_Module
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$name = $this->conn->quoteIdentifier($name, true);
|
$query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields;
|
||||||
$query = 'CREATE TABLE ' . $name . ' (' . $queryFields;
|
|
||||||
|
|
||||||
$check = $this->getCheckDeclaration($fields);
|
$check = $this->getCheckDeclaration($fields);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user