Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| teamtransferid | bigserial | 19 | √ | nextval('tbl_teamtransfer_teamtransferid_seq'::regclass) |
|
|
Primary key |
||||
| effectivedate | date | 13 | null |
|
|
Meaning: The date on which the team transfer is officially scheduled to take effect. |
|||||
| transfernotes | varchar | 500 | √ | null |
|
|
Detailed justification or remarks explaining the reason for the team transfer (e.g., project reassignment, capacity balancing). |
||||
| companyid | int4 | 10 | null |
|
|
FK: Reference to a company master table |
|||||
| employeeid | varchar | 500 | null |
|
|
FK: public.tbl_employee.employeeid |
|||||
| stage | varchar | 100 | null |
|
|
The current step in the workflow process (e.g., Team Manager Review, HR Review, Completed). |
|||||
| statusdate | timestamp | 29,6 | √ | null |
|
|
The timestamp when the current status was last set (e.g., Approved, Rejected, Pending). |
||||
| statusby | varchar | 500 | √ | null |
|
|
FK: public.tbl_employee.employeeid or public.tbl_userlogin.id |
||||
| statusremark | varchar | 500 | √ | null |
|
|
Comments or detailed justification provided by the user who set the current status. |
||||
| approvalimpacted | bool | 1 | √ | null |
|
|
Flag or code indicating which internal approval chains or downstream systems (e.g., project management) were impacted by this transfer request. |
||||
| createdby | varchar | 50 | √ | null |
|
|
FK: public.tbl_userlogin.id or public.tbl_employee.employeeid |
||||
| createddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of when the transfer request record was created. |
||||
| modifiedby | varchar | 50 | √ | null |
|
|
FK: public.tbl_userlogin.id or public.tbl_employee.employeeid |
||||
| modifieddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of the last modification to the transfer request record. |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| pk_tbl_teamtransfer_teamtransferid | Primary key | Asc | teamtransferid |



