taskcafe/api/migrations/0007_add-organization-table.up.sql

6 lines
150 B
MySQL
Raw Normal View History

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