Files
query-orchestration/database/migrations/20241218183020_create_client_table.up.sql
T
Michael McGuinness 04d8eaf52c Merged in feature/client (pull request #31)
Client Entity

* repolevel

* servicefunctions

* openapiclientget

* openapiupdate

* client

* vendor
2025-01-21 18:24:14 +00:00

6 lines
162 B
SQL

CREATE TABLE clients (
id uuid primary key DEFAULT gen_random_uuid(),
name TEXT not null,
canSync boolean not null default false,
UNIQUE (name)
);