Merge pull request #7912 from nextcloud/bugfix/noid/correctly-drop-owncloud-migrations-table

Correctly drop the ownCloud migrations table
This commit is contained in:
Roeland Jago Douma 2018-01-17 13:45:36 +01:00 committed by GitHub
commit 73cc4ac1f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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