Datenbankpfade angepasst.

Tabellenstruktur hinzugefügt
This commit is contained in:
2024-08-21 10:08:18 +02:00
parent 7e0105defa
commit 6f218889ee
8 changed files with 95 additions and 18 deletions

10
projekt.txt Normal file
View File

@@ -0,0 +1,10 @@
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;