Revert "FIX: Use DELETE FROM instead of TRUNCATE for clearTable"

This reverts commit 79c2b5ad42.
This commit is contained in:
Robbie Averill 2018-10-02 14:35:10 +02:00
parent c8e7672ede
commit 5a20bb5e20

View File

@ -403,7 +403,7 @@ abstract class Database
*/
public function clearTable($table)
{
$this->query("DELETE FROM \"$table\"");
$this->query("TRUNCATE \"$table\"");
}
/**