1
0
mirror of https://github.com/google/nomulus synced 2026-02-08 05:50:24 +00:00

Add registry lock email address col to UserUpdateHistory (#2424)

This commit is contained in:
gbrodman
2024-05-02 11:51:48 -04:00
committed by GitHub
parent 4b6ade0b14
commit 147cdff555
5 changed files with 2257 additions and 2233 deletions

View File

@@ -261,11 +261,11 @@ td.section {
</tr>
<tr>
<td class="property_name">generated on</td>
<td class="property_value">2024-04-30 21:17:11.765649774</td>
<td class="property_value">2024-05-01 21:04:48.5296048</td>
</tr>
<tr>
<td class="property_name">last flyway file</td>
<td id="lastFlywayFile" class="property_value">V169__add_more_indexes_needed_for_delete_prober_data.sql</td>
<td id="lastFlywayFile" class="property_value">V170__user_update_registry_lock_email.sql</td>
</tr>
</tbody>
</table>
@@ -277,11 +277,11 @@ td.section {
SchemaCrawler_Diagram
</title>
<polygon fill="white" stroke="transparent" points="-4,4 -4,-3493.5 4025,-3493.5 4025,4 -4,4" />
<text text-anchor="start" x="3730.5" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">generated by</text>
<text text-anchor="start" x="3813.5" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">SchemaCrawler 16.10.1</text>
<text text-anchor="start" x="3729.5" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">generated on</text>
<text text-anchor="start" x="3813.5" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">2024-04-30 21:17:11.765649774</text>
<polygon fill="none" stroke="#888888" points="3726,-4 3726,-44 4013,-44 4013,-4 3726,-4" /> <!-- allocationtoken_a08ccbef -->
<text text-anchor="start" x="3745" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">generated by</text>
<text text-anchor="start" x="3828" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">SchemaCrawler 16.10.1</text>
<text text-anchor="start" x="3744" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">generated on</text>
<text text-anchor="start" x="3828" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">2024-05-01 21:04:48.5296048</text>
<polygon fill="none" stroke="#888888" points="3741,-4 3741,-44 4013,-44 4013,-4 3741,-4" /> <!-- allocationtoken_a08ccbef -->
<g id="node1" class="node">
<title>
allocationtoken_a08ccbef

File diff suppressed because it is too large Load Diff

View File

@@ -167,3 +167,4 @@ V166__drop_should_publish_column.sql
V167__creat_billing_cost_transitions_not_null.sql
V168__registry_lock_email.sql
V169__add_more_indexes_needed_for_delete_prober_data.sql
V170__user_update_registry_lock_email.sql

View File

@@ -0,0 +1,15 @@
-- Copyright 2024 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 "UserUpdateHistory" ADD COLUMN registry_lock_email_address text;

View File

@@ -1338,7 +1338,8 @@ CREATE TABLE public."UserUpdateHistory" (
is_admin boolean NOT NULL,
registrar_roles public.hstore,
update_timestamp timestamp with time zone,
history_acting_user text NOT NULL
history_acting_user text NOT NULL,
registry_lock_email_address text
);