mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 00:40:30 -05:00
🎉 Add priority field to tasks table.
This commit is contained in:
parent
817c22dc3c
commit
6356755f06
1 changed files with 1 additions and 0 deletions
|
@ -5,6 +5,7 @@ CREATE TABLE task (
|
||||||
modified_at timestamptz NOT NULL DEFAULT clock_timestamp(),
|
modified_at timestamptz NOT NULL DEFAULT clock_timestamp(),
|
||||||
completed_at timestamptz NULL DEFAULT NULL,
|
completed_at timestamptz NULL DEFAULT NULL,
|
||||||
scheduled_at timestamptz NOT NULL,
|
scheduled_at timestamptz NOT NULL,
|
||||||
|
priority smallint DEFAULT 100,
|
||||||
|
|
||||||
queue text NOT NULL,
|
queue text NOT NULL,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue