feat(tasks): adopt canonical task statuses
This commit is contained in:
parent
da5aee6e38
commit
38835e9e79
61 changed files with 692 additions and 342 deletions
|
|
@ -29,7 +29,7 @@ def upgrade() -> None:
|
|||
"active", "blocked", "completed", "archived", name="workstreamstatus", create_type=True
|
||||
)
|
||||
task_status = postgresql.ENUM(
|
||||
"todo", "in_progress", "blocked", "done", "cancelled", name="taskstatus", create_type=True
|
||||
"wait", "todo", "progress", "done", "cancel", name="taskstatus", create_type=True
|
||||
)
|
||||
task_priority = postgresql.ENUM(
|
||||
"low", "medium", "high", "critical", name="taskpriority", create_type=True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue