Skip to content
Snippets Groups Projects
Unverified Commit 73cc4ac1 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

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

Correctly drop the ownCloud migrations table
parents c121610d 0d37d24b
No related branches found
No related tags found
No related merge requests found
...@@ -129,7 +129,7 @@ class MigrationService { ...@@ -129,7 +129,7 @@ class MigrationService {
} }
// Drop the table, when it didn't match our expectations. // Drop the table, when it didn't match our expectations.
$this->connection->dropTable($this->connection->getPrefix() . 'migrations'); $this->connection->dropTable('migrations');
} catch (SchemaException $e) { } catch (SchemaException $e) {
// Table not found, no need to panic, we will create it. // Table not found, no need to panic, we will create it.
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment