mirror of https://github.com/xfarrow/blink
18 lines
517 B
SQL
18 lines
517 B
SQL
-- Table: public.ActivationLink
|
|
|
|
-- DROP TABLE IF EXISTS public."ActivationLink";
|
|
|
|
CREATE TABLE IF NOT EXISTS public."ActivationLink"
|
|
(
|
|
identifier character varying PRIMARY KEY COLLATE pg_catalog."default" ,
|
|
person_id integer NOT NULL,
|
|
CONSTRAINT "PersonActivationLinkFK" FOREIGN KEY (person_id)
|
|
REFERENCES public."Person" (id) MATCH SIMPLE
|
|
ON UPDATE CASCADE
|
|
ON DELETE CASCADE
|
|
)
|
|
|
|
TABLESPACE pg_default;
|
|
|
|
ALTER TABLE IF EXISTS public."ActivationLink"
|
|
OWNER to pg_database_owner; |