Zum Hauptinhalt springen

tasks

Module: tasks

Task records with priority, effort, and project linking.

NameTypeNullableDefault ValueNotes
PKID
integerTask ID
fork
forks.ID
integerFork ID (`null` for base module)
owneruser
users.ID
integerOwner user ID (PUBLIC if `owneruser`=`null` and `ownergroup`=`null`)
ownergroup
groups.ID
integerOwner group ID (PUBLIC if `owneruser`=`null` and `ownergroup`=`null`)
creator
integerCreator user ID (defaults to authenticated user on creation)
assigneduser
users.ID
integerAssigned user ID
creationdate
bigintdate_part('epoch', now())Creation date and time as a Unix timestamp (defaults to current date and time on creation)
lastmodified
bigintdate_part('epoch', now())Last modification date and time as a Unix timestamp (auto-reset on modification)
davserver
davservers.ID
integerDAV server ID
ticket
tickets.ID
integerTicket ID; is mutually exclusive to `project`
project
projects.ID
integerProject ID; is mutually exclusive to `ticket`
visibility
smallint0Visibility (`0`=REGULAR, `1`=ARCHIVED, `2`=DELETED)
name
textName
tasknum
text''Task number
datefrom
bigintStart date and time as a Unix timestamp
duedate
bigintDue date and time as a Unix timestamp
status
smallint0Status (`0`=NOTSTARTED, `1`=AWAITINGACCEPTANCE, `2`=ACCEPTED, `3`=REJECTED, `4`=ACTIVE, `5`=INACTIVE, `6`=FEEDBACKREQUIRED, `7`=TESTING, `8`=CANCELLED, `9`=COMPLETED, `10`=FAILED, `11`=BOOKED)
priority
smallint2Priority (`0`=LOWEST, `1`=LOW, `2`=MEDIUM, `3`=HIGH, `4`=HIGHEST)
projectedeffort
integer0Projected effort in minutes
description
text''Detailed general description
NameUniqueNulls DistinctPrimaryPartialMethodKeys
fk_tasks_assigneduserginassigneduser
fk_tasks_davservergindavserver
fk_tasks_forkginfork
fk_tasks_ownergroupginownergroup
fk_tasks_owneruserginowneruser
fk_tasks_projectginproject
fk_tasks_ticketbtreeticket
i_tasks_noforkginfork
i_tasks_noownerginownergroup
pk_tasksbtreeID
s_tasks_nameginname
s_tasks_tasknumgintasknum
NameType
c_tasks_associationcheck
c_tasks_ownercheck
dc_tasks_descriptioncheck
dc_tasks_namecheck
dc_tasks_prioritycheck
dc_tasks_projectedeffortcheck
dc_tasks_statuscheck
dc_tasks_tasknumcheck
dc_tasks_visibilitycheck
fk_tasks_assigneduserforeign_key
fk_tasks_davserverforeign_key
fk_tasks_forkforeign_key
fk_tasks_ownergroupforeign_key
fk_tasks_owneruserforeign_key
fk_tasks_projectforeign_key
fk_tasks_ticketforeign_key
pk_tasksprimary_key
Loading...