insertBulk
inserts
rows of data, so I assume you mean rows rather than columns... In case you did mean columns then you should be using the schema manager for that which has a
dropColumns
method.
But aside from that, there doesn't need to be a bulk method for deleting rows from a table, because the deletes work like a select query in that you just give the relevant conditions/limits and based on that it will delete as many rows as it matches.
So you'd be looking at either:
PHP:
$db->query('
DELETE FROM table
WHERE column = ?
', 'something');
Or:
PHP:
$db->delete('table', 'column = ?', 'something');