Files
dcnsanplanung/projekt.txt
Husky 6f218889ee Datenbankpfade angepasst.
Tabellenstruktur hinzugefügt
2024-08-21 10:08:18 +02:00

10 lines
201 B
Plaintext

CREATE TABLE IF NOT EXISTS public.projekt
(
id SERIAL PRIMARY KEY,
guid text COLLATE pg_catalog."default"
)
TABLESPACE pg_default;
ALTER TABLE IF EXISTS public.projekt
OWNER to sanplaner;