Delayed jobs

From Expertiza_Wiki
Jump to navigation Jump to search

The Delayed Jobs table gives information regarding the users registered to Courses.

Delayed Jobs Variable Documentation

Field Name Type Description
id int(11) The unique record id
priority int(11) Priority given to the delayed Job.
attempts int(11) Number of attempts given to the Job.
handler text The handler for te associated Job.
last_error text The error decription of the Last Error.
run_at datetime Date time value when the job was run.
locked_at datetime Date time value when the job was locked.
failed_at datetime Date time value when the job was failed.
locked_by varchar(255) Details of the User who locked it.
created_at datetime Date time value when the record was created.
updated_at datetime Date time value when the record was updated.
queue varchar(255) Job Queue

E/R diagram for Parents Tables

No Tables were referred by the Delayed Jobs Table as Foreign Key Relationship.

E/R diagram for Child Tables

No Tables were referred by the Delayed Jobs Table as Foreign Key Relationship.


Back to Database Tables Main page.