Guest User

Untitled

a guest
Oct 17th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. QUEUE_DRIVER=database
  2.  
  3. 'database' => [
  4. 'driver' => 'database',
  5. 'table' => 'jobs',
  6. 'queue' => 'default',
  7. 'expire' => 60,
  8. ],
  9.  
  10. class Jobs extends Eloquent {
  11. protected $connection = "database2"
  12. }
  13.  
  14. 'default' => env('QUEUE_DRIVER', 'database'),
  15.  
  16. bootstrapcacheconfig.php
  17.  
  18. 'queue' =>
  19. array (
  20. 'default' => 'sync',
  21.  
  22. 'queue' =>
  23. array (
  24. 'default' => 'database',
  25.  
  26. php artisan config:cache
Add Comment
Please, Sign In to add comment