Details
Status codes
Status | Activity | ID | Color |
---|---|---|---|
Not started | DRAFT | 0 | orange |
Awaiting acceptance | DRAFT | 1 | orange |
Accepted | OPEN | 2 | green |
Rejected | CANCELLED | 3 | red |
Active | OPEN | 4 | green |
Inactive | OPEN | 5 | orange |
Feedback required | OPEN | 6 | orange |
Testing | OPEN | 7 | green |
Cancelled | CANCELLED | 8 | red |
Completed | CLOSED | 9 | black |
Failed | CLOSED | 10 | black |
Booked | CLOSED | 11 | black |
Columns
Column | Type | Size | Nulls | Auto | Default | Children | Parents | Comments | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
ID | int4 | 10 | √ | null |
|
|
Ticket ID |
|||||||
ownergroup | int4 | 10 | √ | null |
|
|
Owner group ID ( |
|||||||
creator | int4 | 10 | √ | null |
|
|
Creator user ID (defaults to authenticated user on creation) |
|||||||
assigneduser | int4 | 10 | √ | null |
|
|
Assigned user ID |
|||||||
creationdate | int8 | 19 | date_part('epoch'::text, now()) |
|
|
Creation date and time as a Unix time stamp (defaults to current date and time on creation) |
||||||||
lastmodified | int8 | 19 | date_part('epoch'::text, now()) |
|
|
Last modification date and time as a Unix time stamp (auto-reset on modification) |
||||||||
account | int4 | 10 | √ | null |
|
|
Account ID |
|||||||
project | int4 | 10 | √ | null |
|
|
Project ID |
|||||||
visibility | int2 | 5 | 0 |
|
|
Visibility ( |
||||||||
name | text | 2147483647 | null |
|
|
Name |
||||||||
ticketnum | text | 2147483647 | ''::text |
|
|
Ticket number |
||||||||
date | int8 | 19 | date_part('epoch'::text, now()) |
|
|
Designated date and time as a Unix time stamp (defaults to current date and time on creation) |
||||||||
duedate | int8 | 19 | √ | null |
|
|
Due date and time as a Unix time stamp |
|||||||
status | int2 | 5 | 0 |
|
|
Status ( |
||||||||
priority | int2 | 5 | 2 |
|
|
Priority ( |
||||||||
description | text | 2147483647 | ''::text |
|
|
Detailed general description |
||||||||
billingitems | json | 2147483647 | √ | null |
|
|
||||||||
procurementitems | json | 2147483647 | √ | null |
|
|
Table contained 0 rows
Indexes
Constraint Name | Type | Sort | Column(s) |
---|---|---|---|
pk_tickets | Primary key | Asc | ID |
fk_tickets_account | Performance | Asc | account |
fk_tickets_project | Performance | Asc | project |
i_tickets_date_ID | Performance | Desc/Desc | date + ID |
i_tickets_noowner | Performance | Asc | ownergroup |
i_tickets_owner | Performance | Asc/Asc | ownergroup + assigneduser |
s_tickets | Performance | Asc/Asc | name + ticketnum |