1
0
mirror of https://github.com/google/nomulus synced 2026-02-11 15:21:28 +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

@@ -0,0 +1,18 @@
-- Copyright 2021 The Nomulus Authors. All Rights Reserved.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
alter table "Registrar"
add column if not exists "last_expiring_cert_notification_sent_date" timestamptz;
alter table "Registrar"
add column if not exists "last_expiring_failover_cert_notification_sent_date" timestamptz;