argos/dmp-db-scema/updates/02/01_CreateLoginConfirmationE...

18 lines
483 B
MySQL
Raw Normal View History

CREATE TABLE public."LoginConfirmationEmail"
(
"ID" uuid NOT NULL,
email character varying COLLATE pg_catalog."default" NOT NULL,
"isConfirmed" boolean NOT NULL,
token uuid NOT NULL,
userId uuid NOT NULL,
"expiresAt" timestamp(4) with time zone NOT NULL,
CONSTRAINT "LoginConfirmationEmail_pkey" PRIMARY KEY ("ID")
)
WITH (
OIDS = FALSE
)
TABLESPACE pg_default;
ALTER TABLE public."LoginConfirmationEmail"
2020-04-29 13:03:19 +02:00
-- OWNER to dmtadm;
OWNER to dmptool;