We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49c3f0 commit 1439bc7Copy full SHA for 1439bc7
readme.md
@@ -18,13 +18,10 @@ Add the Service Provider to the providers array in config/app.php
18
19
'Barryvdh\Queue\AsyncServiceProvider',
20
21
-You need to run the migrations for this package
+You need to create the migration table for queues and run it.
22
23
- $ php artisan migrate --package="barryvdh/laravel-async-queue"
24
-
25
-Or publish them, so they are copied to your regular migrations
26
27
- $ php artisan migrate:publish barryvdh/laravel-async-queue
+ $ php artisan queue:table
+ $ php artisan migrate
28
29
You should now be able to use the async driver in config/queue.php
30
0 commit comments