Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| question_id | bigserial | 19 | √ | nextval('tbl_question_question_id_seq'::regclass) |
|
|
Primary key |
|||||||
| assessment_id | int8 | 19 | null |
|
|
Assessment ID |
||||||||
| question_text | text | 2147483647 | null |
|
|
Question text |
||||||||
| question_type | varchar | 20 | √ | null |
|
|
Possible Values: MCQ |
|||||||
| marks | int4 | 10 | null |
|
|
Meaning: Points assigned for a correct answer to this question. |
||||||||
| createdby | varchar | 50 | null |
|
|
|||||||||
| createddate | timestamp | 29,6 | √ | null |
|
|
||||||||
| modifiedby | varchar | 50 | √ | null |
|
|
||||||||
| modifieddate | timestamp | 29,6 | √ | null |
|
|
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| tbl_question_pkey | Primary key | Asc | question_id |
Check Constraints
| Constraint Name | Constraint |
|---|---|
| tbl_question_question_type_check | (((question_type)::text = ANY (ARRAY[('MCQ'::character varying)::text, ('SUBJECTIVE'::character varying)::text, ('MULTI_SELECT'::character varying)::text]))) |

