Merge pull request #7944 from nextcloud/backport/7912/correctly-drop-owncloud-migrations-table

[stable13] Correctly drop the ownCloud migrations table
This commit is contained in:
Morris Jobke 2018-01-18 17:03:15 +01:00 committed by GitHub
commit eb03435377
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.
}