Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments |
|---|---|---|---|---|---|---|---|---|
| id | serial | 10 | √ | nextval('candidate_offer_document_id_seq'::regclass) |
|
|
Primary key |
|
| candidate_offer_id | int8 | 19 | null |
|
|
FK: public.tbl_candidate_offer.id |
||
| document_type_id | int8 | 19 | null |
|
|
Foreign key identifying the broad category of the document, such as “Identification”, “Education”, etc. |
||
| document_title_id | int8 | 19 | null |
|
|
FK: public.tbl_document_title.id |
||
| label_for_candidate | varchar | 100 | √ | null |
|
|
||
| is_mandatory | bool | 1 | √ | null |
|
|
Boolean flag for document requirement. |
|
| verification_required | bool | 1 | √ | null |
|
|
Boolean flag indicating if a manual check is needed. |
|
| is_multiple_allowed | bool | 1 | √ | null |
|
|
||
| document_index | int8 | 19 | null |
|
|
|||
| action_employee_id | varchar | 500 | √ | null |
|
|
||
| action_employee_time | timestamp | 29,6 | √ | null |
|
|
Timestamp when the last action was taken by an HR employee. Stored as: UTC UI: Converts to user’s local timezone Format: 2025-10-07T13:20:50Z → 07 Oct 2025, 6:50pm (IST) |
|
| remarks | varchar | 100 | √ | null |
|
|
||
| status | varchar | 100 | √ | null |
|
|
Enum: Current state of the document in the workflow. |
|
| final_remarks | varchar | 100 | √ | null |
|
|
Free text for verifier comments. |
|
| attachment | varchar | 255 | √ | null |
|
|
Stores the reference to the uploaded file. |
|
| createdby | varchar | 500 | √ | null |
|
|
||
| createddate | timestamp | 29,6 | √ | null |
|
|
Timestamp when this document requirement was first created. Stored as: UTC UI: Converts to user’s local timezone Format: 2025-10-07T13:20:50Z → 07 Oct 2025, 6:50pm (IST) |
|
| modifiedby | varchar | 500 | √ | null |
|
|
||
| modifieddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of the last update to this record. |
|
| form_data | text | 2147483647 | √ | null |
|
|
Stores structured data associated with a document. |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| candidate_offer_document_pkey | Primary key | Asc | id |
