Skip to content

Prefixes in laravel tables. #33990

Answered by Vusys
jurgen-nmc asked this question in General
Discussion options

You must be logged in to vote

You can do this in the config for queues.

database' => [
    'table' => 'jobs',
    'queue' => 'default',
    'retry_after' => 90,
],

and

'failed' => [
    'driver' => env('QUEUE_FAILED_DRIVER', 'database'),
    'database' => env('DB_CONNECTION', 'mysql'),
    'table' => 'failed_jobs',
],

You can also rename the migrations table in the database config:

'migrations' => 'migrations',

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jurgen-nmc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants