finish migration class

This commit is contained in:
Jan-Niclas Loosen
2025-02-12 16:55:03 +01:00
parent c4a7025978
commit fe9661d611
5 changed files with 196 additions and 148 deletions

View File

@@ -26,7 +26,7 @@ class Deletion
if (!$this->isConditioned())
throw new InvalidArgumentException("Deletions need to be conditioned.");
return esc_sql("DELETE FROM $table WHERE $whereClause");
return "DELETE FROM $table WHERE $whereClause";
}
/**