taskcafe/api/migrations/0006_add-task.up.sql
2020-04-09 21:40:22 -05:00

8 lines
229 B
SQL

CREATE TABLE task (
task_id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
task_group_id uuid NOT NULL REFERENCES task_group(task_group_id),
created_at timestamptz NOT NULL,
name text NOT NULL,
position float NOT NULL
);