Commit f4842edd authored by zYne's avatar zYne

--no commit message

--no commit message
parent b4ad6038
...@@ -47,9 +47,9 @@ class Doctrine_Import_Mysql extends Doctrine_Import ...@@ -47,9 +47,9 @@ class Doctrine_Import_Mysql extends Doctrine_Import
*/ */
public function listSequences($database = null) public function listSequences($database = null)
{ {
$query = "SHOW TABLES"; $query = 'SHOW TABLES';
if (!is_null($database)) { if (!is_null($database)) {
$query .= " FROM $database"; $query .= ' FROM ' . $database;
} }
$tableNames = $this->conn->fetchColumn($query); $tableNames = $this->conn->fetchColumn($query);
......
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