Avoid problems for some DBs by removing the table completly

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2017-05-15 09:57:41 +02:00
parent c6a5a25b48
commit 0e325756c3
No known key found for this signature in database
GPG Key ID: E166FD8976B3BAC8
1 changed files with 2 additions and 4 deletions

View File

@ -77,10 +77,8 @@ class SaveAccountsTableData implements IRepairStep {
$numUsers = $this->runStep($offset);
}
// Clear the table
$query = $this->db->getQueryBuilder();
$query->delete('accounts');
$query->execute();
// Remove the table
$this->db->dropTable('accounts');
}
/**