mirror of
https://github.com/internetee/registry.git
synced 2025-07-30 22:46:22 +02:00
Handling contact verifications
This commit is contained in:
parent
44e42dd0fb
commit
637cabf95f
19 changed files with 612 additions and 5 deletions
|
@ -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');
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue