From 809928c1769d8c98c553cf4e5abb8393ea3fa9d5 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 17 Jan 2018 12:17:41 +0100 Subject: [PATCH] Correctly drop the ownCloud migrations table Signed-off-by: Joas Schilling --- lib/private/DB/MigrationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/private/DB/MigrationService.php b/lib/private/DB/MigrationService.php index 25eaa628e5..5e2c7e69ee 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. }