rhythm-backend/migrations/0003_create_organizations_table.sql
Dmitri a846093fbf
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m30s
initial work for organizations
2026-05-04 23:30:41 +02:00

8 lines
254 B
SQL

create table organizations (
id uuid primary key default uuidv4(),
name varchar(255) not null,
slug varchar(255) not null unique, -- acme-corp-a7x9
created_at timestamptz not null default now(),
updated_at timestamptz not null default now()
);