morffix/migrations/000004_create_task_table.up.sql
2024-05-10 13:28:20 +02:00

10 lines
No EOL
242 B
SQL

CREATE TABLE IF NOT EXISTS tasks(
id bigserial PRIMARY KEY,
worker_id uuid REFERENCES workers(id),
file_id bigint REFERENCES files(id) NOT NULL,
type smallint NOT NULL,
status smallint NOT NULL,
data JSONB,
log text[]
);