1
0
mirror of https://github.com/google/nomulus synced 2026-02-09 06:20:29 +00:00

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 38c8e81690
commit 58e413af89
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
);