Skip to content

Commit

Permalink
Increased size of smtp_response field.
Browse files Browse the repository at this point in the history
  • Loading branch information
nbitounis committed Jun 2, 2020
1 parent d111fd3 commit 6b13c25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sql/ses_notifications_init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE ses_notifications.deliveryevents (
source_ip varchar(32) NULL,
sending_account_id varchar(128) NULL,
delivered_at timestamptz NULL,
smtp_response varchar(256) NULL COLLATE "ucs_basic",
smtp_response varchar(4000) NULL COLLATE "ucs_basic",
reporting_mta varchar(256) NULL,
recipients varchar(64000) NULL COLLATE "ucs_basic"
);
Expand Down Expand Up @@ -131,7 +131,7 @@ CREATE TABLE ses_notifications.deliveries (
source_ip varchar(32) NULL,
sending_account_id varchar(128) NULL,
delivered_at timestamptz NULL,
smtp_response varchar(256) NULL COLLATE "ucs_basic",
smtp_response varchar(4000) NULL COLLATE "ucs_basic",
reporting_mta varchar(256) NULL,
remote_mta_ip varchar(32) NULL,
recipients varchar(64000) NULL COLLATE "ucs_basic"
Expand Down

0 comments on commit 6b13c25

Please sign in to comment.