mirror of
https://github.com/internetee/registry.git
synced 2025-07-27 21:16:12 +02:00
Modified identification request webhook
This commit is contained in:
parent
d04622c49f
commit
0085f99e02
14 changed files with 292 additions and 19 deletions
|
@ -0,0 +1,5 @@
|
|||
class AddVerificationIdToContacts < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :contacts, :verification_id, :string
|
||||
end
|
||||
end
|
|
@ -696,7 +696,8 @@ CREATE TABLE public.contacts (
|
|||
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
|
||||
verified_at timestamp without time zone,
|
||||
verification_id character varying
|
||||
);
|
||||
|
||||
|
||||
|
@ -5613,6 +5614,7 @@ INSERT INTO "schema_migrations" (version) VALUES
|
|||
('20240816091049'),
|
||||
('20240816092636'),
|
||||
('20240903131540'),
|
||||
('20240924103554');
|
||||
('20240924103554'),
|
||||
('20241015071505');
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue