compileDelete method
Compile a delete statement into SQL.
Implementation
@override
String compileDelete(Map<String, dynamic> query) {
final table = wrapTable(query['table']);
final wheres = query['wheres'] != null
? compileWheres(query['wheres'])
: '';
return 'DELETE FROM $table $wheres'.trim();
}