0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-09 16:30:37 -05:00

🎉 Add priority field to tasks table.

This commit is contained in:
Andrey Antukh 2020-05-14 23:41:42 +02:00 committed by Alonso Torres
parent 817c22dc3c
commit 6356755f06

View file

@ -5,6 +5,7 @@ CREATE TABLE task (
modified_at timestamptz NOT NULL DEFAULT clock_timestamp(),
completed_at timestamptz NULL DEFAULT NULL,
scheduled_at timestamptz NOT NULL,
priority smallint DEFAULT 100,
queue text NOT NULL,