Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 1m30s
8 lines
254 B
SQL
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()
|
|
);
|