From 0d37d24b4bce783320d3a098457b2aa92664c6ab Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Wed, 17 Jan 2018 12:17:41 +0100 Subject: Correctly drop the ownCloud migrations table Signed-off-by: Joas Schilling --- lib/private/DB/MigrationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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. } -- cgit v1.2.3