Definition hatte keinen primären Schlüssel.

This commit is contained in:
2021-04-02 19:20:53 +02:00
parent e113a80efc
commit edc7ed5fe6
+3 -2
View File
@@ -23,8 +23,9 @@ DROP VIEW IF EXISTS public."Arbeitszeiten - Jahr";
--
CREATE TABLE public."Arbeitszeiten" (
"Datum" date NOT NULL,
"Arbeitszeit" interval
"Datum" date not null,
"Arbeitszeit" interval(6) null,
constraint "Arbeitszeiten_pkey" primary key ("Datum")
);