diff --git a/model/connect/MySQLSchemaManager.php b/model/connect/MySQLSchemaManager.php index 8bb0f4424..ef9bf6ed7 100644 --- a/model/connect/MySQLSchemaManager.php +++ b/model/connect/MySQLSchemaManager.php @@ -336,7 +336,7 @@ class MySQLSchemaManager extends DBSchemaManager { public function tableList() { $tables = array(); - foreach ($this->query("SHOW TABLES") as $record) { + foreach ($this->query("SHOW FULL TABLES WHERE Table_Type != 'VIEW'") as $record) { $table = reset($record); $tables[strtolower($table)] = $table; }