Submission records
The Submission Records table gives information regarding submissions done which are associated with a particular assignment ID.
Submission Records Variable Documentation
| Name | Datatype | Description |
|---|---|---|
| id | int(11) | Primary key of the entry in table, auto increments by default |
| created_at | datetime | Date time value when the record was created. |
| updated_at | datetime | Date time value when the record was updated. |
| type | text | Type description of the Submission record. |
| content | varchar(255) | Content of the submission record. |
| operation | varchar(255) | Operation allowed on the record. |
| team_id | int(11) | Team ID associated with this submission. |
| user | vharchar(255) | User who did the submission. |
| assignment_id | int(11) | ID of the assignment the submission is associated to. |
E/R diagram for Parents Tables
No Tables were referred by the Submission Records Table as Foreign Key Relationship.
E/R diagram for Child Tables
No Tables were referred by the Submission Records Table as Foreign Key Relationship.
Back to Database Tables Main page.