aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/DB/OracleConnection.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/DB/OracleConnection.php')
-rw-r--r--lib/private/DB/OracleConnection.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/DB/OracleConnection.php b/lib/private/DB/OracleConnection.php
index abfb69f129b..5ffb65d801d 100644
--- a/lib/private/DB/OracleConnection.php
+++ b/lib/private/DB/OracleConnection.php
@@ -68,7 +68,7 @@ class OracleConnection extends Connection {
public function dropTable($table) {
$table = $this->tablePrefix . trim($table);
$table = $this->quoteIdentifier($table);
- $schema = $this->getSchemaManager();
+ $schema = $this->createSchemaManager();
if ($schema->tablesExist([$table])) {
$schema->dropTable($table);
}
@@ -83,7 +83,7 @@ class OracleConnection extends Connection {
public function tableExists($table) {
$table = $this->tablePrefix . trim($table);
$table = $this->quoteIdentifier($table);
- $schema = $this->getSchemaManager();
+ $schema = $this->createSchemaManager();
return $schema->tablesExist([$table]);
}
}