Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-01-18 19:03:15 +0300
committerGitHub <noreply@github.com>2018-01-18 19:03:15 +0300
commiteb034353771bdd38ddea26581db1d61d6020214b (patch)
tree772915d2fb90b528a7a64e169eb1f6dd0fba2fdd
parentb7da6f13ffb0a42e8b1fc98d06746efd03abd156 (diff)
parent809928c1769d8c98c553cf4e5abb8393ea3fa9d5 (diff)
Merge pull request #7944 from nextcloud/backport/7912/correctly-drop-owncloud-migrations-table
[stable13] Correctly drop the ownCloud migrations table
-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 25eaa628e52..5e2c7e69ee9 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.
}