Columns
| Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| ticketid | bigserial | 19 | √ | nextval('tbl_ticket_ticketid_seq'::regclass) |
|
|
Primary key |
||||
| ticketcategoryid | int8 | 19 | null |
|
|
FK: Reference to a ticket category master table |
|||||
| subject | varchar | 200 | null |
|
|
A concise, one-line summary of the issue or request. |
|||||
| description | varchar | 1000 | null |
|
|
The detailed explanation of the issue, including steps to reproduce or required service details. |
|||||
| assigneeid | varchar | 500 | √ | null |
|
|
FK: public.tbl_employee.employeeid or public.tbl_userlogin.id |
||||
| ticketstatusid | int8 | 19 | null |
|
|
FK: Reference to a ticket status master table |
|||||
| priorityid | int8 | 19 | null |
|
|
FK: Reference to a priority master table |
|||||
| ratingid | int8 | 19 | √ | null |
|
|
FK: Reference to a rating master table |
||||
| resolveddate | timestamp | 29,6 | √ | null |
|
|
The timestamp when the ticket was marked as resolved. |
||||
| companyid | int4 | 10 | null |
|
|
FK: Reference to a company master table |
|||||
| createdby | varchar | 50 | √ | null |
|
|
FK: public.tbl_employee.employeeid or public.tbl_userlogin.id |
||||
| createddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of when the ticket record was created. |
||||
| modifiedby | varchar | 50 | √ | null |
|
|
FK: public.tbl_employee.employeeid or public.tbl_userlogin.id |
||||
| modifieddate | timestamp | 29,6 | √ | null |
|
|
Timestamp of the last modification to the ticket record. |
||||
| stage | varchar | 100 | null |
|
|
The current step (closed New ) |
Indexes
| Constraint Name | Type | Sort | Column(s) |
|---|---|---|---|
| pk_tbl_ticket_ticketid | Primary key | Asc | ticketid |



