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...") |
No edit summary |
||
| (2 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
<div style="background-color: #ffcccc; border: 1px solid #cc0000; padding: 10px; margin-bottom: 20px; text-align: center;"> | |||
'''⚠ DEPRECATED: This table has been removed from the database in the latest release. This documentation is retained for historical reference only.''' | |||
</div> | |||
The Delayed Jobs table gives information regarding the users registered to Courses. | The Delayed Jobs table gives information regarding the users registered to Courses. | ||
== Delayed Jobs Variable Documentation == | == Delayed Jobs Variable Documentation == | ||
| Line 55: | Line 59: | ||
== 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 07:24, 2 December 2025
⚠ DEPRECATED: This table has been removed from the database in the latest release. This documentation is retained for historical reference only.
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.