Add full request JSON to bounced mail, remove unused views

This commit is contained in:
Karl Erik Õunapuu 2020-09-17 14:21:25 +03:00
parent 6af37a787d
commit 834b2c95bc
No known key found for this signature in database
GPG key ID: C9DD647298A34764
10 changed files with 31 additions and 90 deletions

View file

@ -486,7 +486,8 @@ CREATE TABLE public.bounced_mail_addresses (
incidents integer DEFAULT 1 NOT NULL,
response_json jsonb,
created_at timestamp(6) without time zone NOT NULL,
updated_at timestamp(6) without time zone NOT NULL
updated_at timestamp(6) without time zone NOT NULL,
recipient_json jsonb NOT NULL
);
@ -4956,6 +4957,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20200908131554'),
('20200910085157'),
('20200910102028'),
('20200916125326');
('20200916125326'),
('20200917104213');