sql improvement

This commit is contained in:
xfarrow
2024-02-18 12:03:57 +01:00
parent a6c8450ea5
commit 46229ac247
5 changed files with 11 additions and 11 deletions

View File

@ -4,7 +4,7 @@
CREATE TABLE IF NOT EXISTS public."ActivationLink"
(
identifier character varying PRIMARY KEY COLLATE pg_catalog."default" ,
identifier character varying PRIMARY KEY,
person_id integer NOT NULL,
CONSTRAINT "PersonActivationLinkFK" FOREIGN KEY (person_id)
REFERENCES public."Person" (id) MATCH SIMPLE