This commit is contained in:
parent
b4ad603841
commit
f4842edd98
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue