diff --git a/queues.md b/queues.md index e98b257d54..ff29091bb8 100644 --- a/queues.md +++ b/queues.md @@ -1398,10 +1398,10 @@ $this->fail('Something went wrong.'); ## Job Batching -Laravel's job batching feature allows you to easily execute a batch of jobs and then perform some action when the batch of jobs has completed executing. Before getting started, you should create a database migration to build a table which will contain meta information about your job batches, such as their completion percentage. This migration may be generated using the `make:queue-batches-table` Artisan command: +Laravel's job batching feature allows you to easily execute a batch of jobs and then perform some action when the batch of jobs has completed executing. Before getting started, you should create a database migration to build a table which will contain meta information about your job batches, such as their completion percentage. This migration may be generated using the `queue:batches-table` Artisan command: ```shell -php artisan make:queue-batches-table +php artisan queue:batches-table php artisan migrate ```