Skip to content
This repository was archived by the owner on Nov 5, 2025. It is now read-only.

Commit e7e5480

Browse files
committed
Update readme with migrations
1 parent f6af069 commit e7e5480

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

readme.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
Just like the 'sync' driver, this is not a real queue driver. It is always fired immediatly.
55
The only difference is that the closure is sent to the background without waiting for the response.
66

7-
Note: Alpha release, only tested on Linux, should also work on Windows
7+
> **Note:** If you are coming from 0.1.0 (or dev-master), you will need to run the migrations, since the new versions uses a database to store the queue.
88
99
### Install
1010
Add the package to the require section of your composer.json and run `composer update`
@@ -14,9 +14,12 @@ Add the package to the require section of your composer.json and run `composer u
1414
Add the Service Provider to the providers array in config/app.php
1515

1616
'Barryvdh\Queue\AsyncServiceProvider',
17+
18+
You need to run the migrations for this package
1719

18-
You should now be able to use the async driver in config/queue.php
20+
$ php artisan migrate --package="barryvdh/laravel-async-queue"
1921

22+
You should now be able to use the async driver in config/queue.php
2023

2124
'default' => 'async',
2225

0 commit comments

Comments
 (0)