Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||
---|---|---|---|---|---|---|---|---|---|---|
companyId | uuid | 2147483647 | null |
|
|
The ID of the learning site |
||||
id | uuid | 2147483647 | null |
|
|
Unique Identifier of the Quiz Attempt |
||||
courseId | uuid | 2147483647 | √ | null |
|
|
The ID of the Course associated with the Quiz Attempt |
|||
userId | uuid | 2147483647 | √ | null |
|
|
The ID of the User associated with the Quiz Attempt |
|||
topicId | uuid | 2147483647 | √ | null |
|
|
The ID of the Topic associated with the Quiz Attempt |
|||
topicType | varchar | 16 | null |
|
|
The topic type of the Quiz Attempt |
||||
status | varchar | 16 | null |
|
|
The status of the Quiz Attempt |
||||
grade | int4 | 10 | √ | null |
|
|
The grade of the Quiz Attempt |
|||
passed | bool | 1 | true |
|
|
The passed of the Quiz Attempt |
||||
timeElapsed | int4 | 10 | √ | null |
|
|
The time elapsed of the Quiz Attempt |
|||
createdAt | timestamp | 29,6 | √ | null |
|
|
The date and time the Quiz Attempt was created |
|||
forgiven | bool | 1 | false |
|
|
If this attempt has been forgiven and that it should be removed from any maxAttempt calculations |
||||
updatedAt | timestamp | 29,6 | √ | null |
|
|
Table contained 0 rows
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
quizAttempts_pkey | Primary key | Asc | id |
quizAttempts_courseId_idx | Performance | Asc | courseId |
quizAttempts_topicId_idx | Performance | Asc | topicId |
quizAttempts_userId_idx | Performance | Asc | userId |