Add email checking with validation event saving

This commit is contained in:
Alex Sherman 2021-06-29 16:13:40 +05:00
parent d4fe961e34
commit c344b91d84
4 changed files with 65 additions and 4 deletions

View file

@ -2612,7 +2612,7 @@ ALTER SEQUENCE public.users_id_seq OWNED BY public.users.id;
CREATE TABLE public.validation_events (
id bigint NOT NULL,
event_data jsonb,
result boolean,
success boolean,
validation_eventable_type character varying,
validation_eventable_id bigint,
created_at timestamp(6) without time zone NOT NULL,