Reset SQL

This commit is contained in:
Magnus Åhall 2026-05-26 11:02:56 +02:00
parent 75d242c041
commit 4c513a5106
12 changed files with 538 additions and 570 deletions

View file

@ -1,10 +0,0 @@
CREATE TABLE public.client (
id serial NOT NULL,
user_id int4 NOT NULL,
client_uuid bpchar(36) DEFAULT '' NOT NULL,
created timestamptz DEFAULT NOW() NOT NULL,
description varchar DEFAULT '' NOT NULL,
CONSTRAINT client_pk PRIMARY KEY (id)
);
CREATE UNIQUE INDEX client_uuid_idx ON public.client (client_uuid);