taskcafe/migrations/0006_add-task.up.sql

8 lines
229 B
MySQL
Raw Normal View History

2020-04-10 04:40:22 +02:00
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
);