Following the Laravel docs, it says here that the batches table should be pruned daily by running the following.
$schedule->command('queue:prune-batches')->daily();
I've tried running this command on my server and I get the error:
Command "queue:prune-batches" is not defined.
I searched Google but I couldn't find any matching results for this error or many results for "queue:prune-batches" for that matter.
Am I missing something?
