diff --git a/lib/Doctrine/Export/Mysql.php b/lib/Doctrine/Export/Mysql.php index afa3b9b87..097f68776 100644 --- a/lib/Doctrine/Export/Mysql.php +++ b/lib/Doctrine/Export/Mysql.php @@ -524,7 +524,7 @@ public function createSequence($sequenceName, $start = 1, array $options = array try { $query = 'CREATE TABLE ' . $sequenceName . ' (' . $seqcolName . ' BIGINT NOT NULL AUTO_INCREMENT, PRIMARY KEY (' - . $seqcolName . ')) ' . implode($optionsStrings, ' '); + . $seqcolName . ')) ' . implode(' ', $optionsStrings); $res = $this->conn->exec($query); } catch(Doctrine_Connection_Exception $e) {