Skip to content
Snippets Groups Projects
Unverified Commit 0d37d24b authored by Joas Schilling's avatar Joas Schilling
Browse files

Correctly drop the ownCloud migrations table

parent 6e95bd7a
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