Delayed jobs: Difference between revisions
Jump to navigation
Jump to search
(Created page with "The Delayed Jobs table gives information regarding the users registered to Courses. == Delayed Jobs Variable Documentation == {| class="wikitable" !Field Name !!Type !!Descript...") |
|||
(One intermediate revision by the same user not shown) | |||
Line 55: | Line 55: | ||
== E/R diagram for Parents Tables == | == E/R diagram for Parents Tables == | ||
No Tables were referred by the | No Tables were referred by the Delayed Jobs Table as Foreign Key Relationship. | ||
== E/R diagram for Child Tables == | == E/R diagram for Child Tables == | ||
No Tables were referred by the | No Tables were referred by the Delayed Jobs Table as Foreign Key Relationship. | ||
Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page. | Back to [http://wiki.expertiza.ncsu.edu/index.php/Documentation_on_Database_Tables Database Tables] Main page. |
Latest revision as of 23:44, 24 April 2018
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.