Expand registrar schema to support sending expiring certificate notification emails (#1247)

* Expand registrar schema to support sending expiring certificate notification emails

* Remove java change (restrictly schema change only)
This commit is contained in:
Rachel Guan 2021-07-22 17:11:32 -04:00 committed by GitHub
parent 3a9b0ca599
commit 4a6fd65b0c
5 changed files with 3994 additions and 3947 deletions

View file

@ -800,7 +800,9 @@ CREATE TABLE public."Registrar" (
state text,
type text NOT NULL,
url text,
whois_server text
whois_server text,
last_expiring_cert_notification_sent_date timestamp with time zone,
last_expiring_failover_cert_notification_sent_date timestamp with time zone
);