morffix/migrations/000004_create_task_table.up.sql
2024-05-05 01:27:39 +02:00

8 lines
No EOL
210 B
SQL

CREATE TABLE IF NOT EXISTS tasks(
id serial PRIMARY KEY,
worker_id uuid REFERENCES workers(id),
file_id integer REFERENCES files(id) NOT NULL,
status smallint NOT NULL,
type smallint NOT NULL
);