Commit 9277dba3 authored by Benjamin Eberlei's avatar Benjamin Eberlei

Cleanup in DB2 Platform and SchemaManager

parent 604ed962
...@@ -25,7 +25,7 @@ use Doctrine\DBAL\DBALException; ...@@ -25,7 +25,7 @@ use Doctrine\DBAL\DBALException;
use Doctrine\DBAL\Schema\Index; use Doctrine\DBAL\Schema\Index;
use Doctrine\DBAL\Schema\TableDiff; use Doctrine\DBAL\Schema\TableDiff;
class Db2Platform extends AbstractPlatform class DB2Platform extends AbstractPlatform
{ {
/** /**
* Gets the SQL snippet used to declare a VARCHAR column type. * Gets the SQL snippet used to declare a VARCHAR column type.
......
...@@ -42,7 +42,6 @@ class DB2SchemaManager extends AbstractSchemaManager ...@@ -42,7 +42,6 @@ class DB2SchemaManager extends AbstractSchemaManager
*/ */
public function listTableNames() public function listTableNames()
{ {
$sql = $this->_platform->getListTablesSQL(); $sql = $this->_platform->getListTablesSQL();
$sql .= " AND CREATOR = UPPER('".$this->_conn->getUsername()."')"; $sql .= " AND CREATOR = UPPER('".$this->_conn->getUsername()."')";
......
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