DBProvider
Configuration
{
"tableName": "cbq_jobs",
"datasource": null,
"queryOptions": {}
}tableName
datasource
queryOptions
Jobs Table Structure
Last updated
schema.create( "cbq_jobs", function ( t ) {
t.bigIncrements( "id" );
t.string( "queue" );
t.longText( "payload" );
t.unsignedTinyInteger( "attempts" );
t.unsignedInteger( "reservedDate" ).nullable();
t.unsignedInteger( "availableDate" );
t.unsignedInteger( "createdDate" );
t.index( "queue" );
} );