Handling contact verifications

This commit is contained in:
tsoganov 2024-10-09 11:57:32 +03:00
parent 44e42dd0fb
commit 637cabf95f
19 changed files with 612 additions and 5 deletions

View file

@ -695,6 +695,8 @@ CREATE TABLE public.contacts (
registrant_publishable boolean DEFAULT false,
checked_company_at timestamp without time zone,
company_register_status character varying
ident_request_sent_at timestamp without time zone,
verified_at timestamp without time zone
);
@ -4263,6 +4265,13 @@ CREATE INDEX index_contacts_on_registrar_id ON public.contacts USING btree (regi
CREATE INDEX index_contacts_on_registrar_id_and_ident_type ON public.contacts USING btree (registrar_id, ident_type);
--
-- Name: index_contacts_on_verified_at; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX index_contacts_on_verified_at ON public.contacts USING btree (verified_at);
--
-- Name: index_csync_records_on_domain_id; Type: INDEX; Schema: public; Owner: -
--
@ -5602,6 +5611,8 @@ INSERT INTO "schema_migrations" (version) VALUES
('20230710120154'),
('20230711083811'),
('20240816091049'),
('20240816092636');
('20240816092636'),
('20240903131540'),
('20240924103554');