taskcafe/api/migrations/0003_add-team-table.up.sql

6 lines
134 B
MySQL
Raw Normal View History

2020-04-10 04:40:22 +02:00
CREATE TABLE team (
team_id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
created_at timestamptz NOT NULL,
name text NOT NULL
);