Merge branch 'master' into 1928-move-whois-db-change-management-from-rest-whois-project-to-registry

This commit is contained in:
OlegPhenomenon 2021-05-13 11:01:36 +03:00 committed by GitHub
commit beeb67ad23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
69 changed files with 844 additions and 493 deletions

View file

@ -541,6 +541,7 @@ ALTER SEQUENCE public.certificates_id_seq OWNED BY public.certificates.id;
--
CREATE TABLE public.contact_requests (
id integer NOT NULL,
whois_record_id integer NOT NULL,
secret character varying NOT NULL,
@ -552,6 +553,7 @@ CREATE TABLE public.contact_requests (
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL,
message_id character varying
);
@ -573,7 +575,6 @@ CREATE SEQUENCE public.contact_requests_id_seq
ALTER SEQUENCE public.contact_requests_id_seq OWNED BY public.contact_requests.id;
--
-- Name: contacts; Type: TABLE; Schema: public; Owner: -
--