diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-01-18 17:03:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-18 17:03:15 +0100 |
commit | eb034353771bdd38ddea26581db1d61d6020214b (patch) | |
tree | 772915d2fb90b528a7a64e169eb1f6dd0fba2fdd | |
parent | b7da6f13ffb0a42e8b1fc98d06746efd03abd156 (diff) | |
parent | 809928c1769d8c98c553cf4e5abb8393ea3fa9d5 (diff) | |
download | nextcloud-server-eb034353771bdd38ddea26581db1d61d6020214b.tar.gz nextcloud-server-eb034353771bdd38ddea26581db1d61d6020214b.zip |
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.php | 2 |
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. } |