summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-01-17 13:45:36 +0100
committerGitHub <noreply@github.com>2018-01-17 13:45:36 +0100
commit73cc4ac1f688cb181e3072490699f054b8c91e8c (patch)
treeeb7d77bb591472f19a59e436afefdfd160571270 /lib
parentc121610d5a42b8a30a328c0a2f9704fb20d4c369 (diff)
parent0d37d24b4bce783320d3a098457b2aa92664c6ab (diff)
downloadnextcloud-server-73cc4ac1f688cb181e3072490699f054b8c91e8c.tar.gz
nextcloud-server-73cc4ac1f688cb181e3072490699f054b8c91e8c.zip
Merge pull request #7912 from nextcloud/bugfix/noid/correctly-drop-owncloud-migrations-table
Correctly drop the ownCloud migrations table
Diffstat (limited to 'lib')
-rw-r--r--lib/private/DB/MigrationService.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php
index cbe5bd9b957..0c881f28ecb 100644
--- a/lib/private/DB/MigrationService.php
+++ b/lib/private/DB/MigrationService.php
@@ -129,7 +129,7 @@ class MigrationService {
}
// Drop the table, when it didn't match our expectations.
- $this->connection->dropTable($this->connection->getPrefix() . 'migrations');
+ $this->connection->dropTable('migrations');
} catch (SchemaException $e) {
// Table not found, no need to panic, we will create it.
}