Commit 9b7c743f authored by jackbravo's avatar jackbravo

Prevent Doctrine from quoting two times table name, bug report by g00fy on irc

parent 7fc76779
......@@ -228,8 +228,7 @@ class Doctrine_Export extends Doctrine_Connection_Module
}
}
$name = $this->conn->quoteIdentifier($name, true);
$query = 'CREATE TABLE ' . $name . ' (' . $queryFields;
$query = 'CREATE TABLE ' . $this->conn->quoteIdentifier($name, true) . ' (' . $queryFields;
$check = $this->getCheckDeclaration($fields);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment