mirror of
https://github.com/google/nomulus.git
synced 2025-07-24 03:30:46 +02:00
Convert ofy() to tm() for all contact transfer flows (#937)
* Convert ofy() to tm() for all contact transfer flows * Resolve comments
This commit is contained in:
parent
39e7c6a8e5
commit
618d009ffd
19 changed files with 3022 additions and 2683 deletions
|
@ -261,11 +261,11 @@ td.section {
|
|||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">generated on</td>
|
||||
<td class="property_value">2021-01-14 16:15:22.842637</td>
|
||||
<td class="property_value">2021-01-21 00:11:27.19594</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="property_name">last flyway file</td>
|
||||
<td id="lastFlywayFile" class="property_value">V84__add_vkey_columns_in_billing_cancellation.sql</td>
|
||||
<td id="lastFlywayFile" class="property_value">V85__add_required_columns_in_transfer_data.sql</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
@ -274,19 +274,19 @@ td.section {
|
|||
<svg viewbox="0.00 0.00 4221.44 2624.18" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="erDiagram" style="overflow: hidden; width: 100%; height: 800px"> <g id="graph0" class="graph" transform="scale(1 1) rotate(0) translate(4 2620.18)">
|
||||
<title>SchemaCrawler_Diagram</title>
|
||||
<polygon fill="white" stroke="transparent" points="-4,4 -4,-2620.18 4217.44,-2620.18 4217.44,4 -4,4" />
|
||||
<text text-anchor="start" x="3944.94" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
<text text-anchor="start" x="3952.94" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
generated by
|
||||
</text>
|
||||
<text text-anchor="start" x="4027.94" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
<text text-anchor="start" x="4035.94" y="-29.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
SchemaCrawler 16.10.1
|
||||
</text>
|
||||
<text text-anchor="start" x="3943.94" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
<text text-anchor="start" x="3951.94" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
generated on
|
||||
</text>
|
||||
<text text-anchor="start" x="4027.94" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
2021-01-14 16:15:22.842637
|
||||
<text text-anchor="start" x="4035.94" y="-10.8" font-family="Helvetica,sans-Serif" font-size="14.00">
|
||||
2021-01-21 00:11:27.19594
|
||||
</text>
|
||||
<polygon fill="none" stroke="#888888" points="3940.44,-4 3940.44,-44 4205.44,-44 4205.44,-4 3940.44,-4" /> <!-- allocationtoken_a08ccbef -->
|
||||
<polygon fill="none" stroke="#888888" points="3948.44,-4 3948.44,-44 4205.44,-44 4205.44,-4 3948.44,-4" /> <!-- allocationtoken_a08ccbef -->
|
||||
<g id="node1" class="node">
|
||||
<title>allocationtoken_a08ccbef</title>
|
||||
<polygon fill="#ebcef2" stroke="transparent" points="2538.5,-1071.68 2538.5,-1090.68 2691.5,-1090.68 2691.5,-1071.68 2538.5,-1071.68" />
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -82,3 +82,4 @@ V81__drop_spec11_fkeys.sql
|
|||
V82__add_columns_to_restore_symmetric_billing_vkey.sql
|
||||
V83__add_indexes_on_domainhost.sql
|
||||
V84__add_vkey_columns_in_billing_cancellation.sql
|
||||
V85__add_required_columns_in_transfer_data.sql
|
||||
|
|
|
@ -0,0 +1,57 @@
|
|||
-- 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 "Contact"
|
||||
add column if not exists "transfer_history_entry_id" int8;
|
||||
alter table "Contact"
|
||||
add column if not exists "transfer_repo_id" text;
|
||||
alter table "Contact"
|
||||
rename column "transfer_gaining_poll_message_id"
|
||||
to "transfer_poll_message_id_1";
|
||||
alter table "Contact"
|
||||
rename column "transfer_losing_poll_message_id"
|
||||
to "transfer_poll_message_id_2";
|
||||
|
||||
alter table "ContactHistory"
|
||||
add column if not exists "transfer_history_entry_id" int8;
|
||||
alter table "ContactHistory"
|
||||
add column if not exists "transfer_repo_id" text;
|
||||
alter table "ContactHistory"
|
||||
rename column "transfer_gaining_poll_message_id"
|
||||
to "transfer_poll_message_id_1";
|
||||
alter table "ContactHistory"
|
||||
rename column "transfer_losing_poll_message_id"
|
||||
to "transfer_poll_message_id_2";
|
||||
|
||||
alter table "Domain"
|
||||
add column if not exists "transfer_history_entry_id" int8;
|
||||
alter table "Domain"
|
||||
add column if not exists "transfer_repo_id" text;
|
||||
alter table "Domain"
|
||||
rename column "transfer_gaining_poll_message_id"
|
||||
to "transfer_poll_message_id_1";
|
||||
alter table "Domain"
|
||||
rename column "transfer_losing_poll_message_id"
|
||||
to "transfer_poll_message_id_2";
|
||||
|
||||
alter table "DomainHistory"
|
||||
add column if not exists "transfer_history_entry_id" int8;
|
||||
alter table "DomainHistory"
|
||||
add column if not exists "transfer_repo_id" text;
|
||||
alter table "DomainHistory"
|
||||
rename column "transfer_gaining_poll_message_id"
|
||||
to "transfer_poll_message_id_1";
|
||||
alter table "DomainHistory"
|
||||
rename column "transfer_losing_poll_message_id"
|
||||
to "transfer_poll_message_id_2";
|
|
@ -140,8 +140,10 @@
|
|||
addr_local_org text,
|
||||
addr_local_type text,
|
||||
search_name text,
|
||||
transfer_gaining_poll_message_id int8,
|
||||
transfer_losing_poll_message_id int8,
|
||||
transfer_history_entry_id int8,
|
||||
transfer_poll_message_id_1 int8,
|
||||
transfer_poll_message_id_2 int8,
|
||||
transfer_repo_id text,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -201,8 +203,10 @@
|
|||
addr_local_org text,
|
||||
addr_local_type text,
|
||||
search_name text,
|
||||
transfer_gaining_poll_message_id int8,
|
||||
transfer_losing_poll_message_id int8,
|
||||
transfer_history_entry_id int8,
|
||||
transfer_poll_message_id_1 int8,
|
||||
transfer_poll_message_id_2 int8,
|
||||
transfer_repo_id text,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -284,8 +288,10 @@
|
|||
transfer_renew_period_unit text,
|
||||
transfer_renew_period_value int4,
|
||||
transfer_registration_expiration_time timestamptz,
|
||||
transfer_gaining_poll_message_id int8,
|
||||
transfer_losing_poll_message_id int8,
|
||||
transfer_history_entry_id int8,
|
||||
transfer_poll_message_id_1 int8,
|
||||
transfer_poll_message_id_2 int8,
|
||||
transfer_repo_id text,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -353,8 +359,10 @@
|
|||
transfer_renew_period_unit text,
|
||||
transfer_renew_period_value int4,
|
||||
transfer_registration_expiration_time timestamptz,
|
||||
transfer_gaining_poll_message_id int8,
|
||||
transfer_losing_poll_message_id int8,
|
||||
transfer_history_entry_id int8,
|
||||
transfer_poll_message_id_1 int8,
|
||||
transfer_poll_message_id_2 int8,
|
||||
transfer_repo_id text,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
|
|
@ -210,8 +210,8 @@ CREATE TABLE public."Contact" (
|
|||
search_name text,
|
||||
voice_phone_extension text,
|
||||
voice_phone_number text,
|
||||
transfer_gaining_poll_message_id bigint,
|
||||
transfer_losing_poll_message_id bigint,
|
||||
transfer_poll_message_id_1 bigint,
|
||||
transfer_poll_message_id_2 bigint,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -219,7 +219,9 @@ CREATE TABLE public."Contact" (
|
|||
transfer_pending_expiration_time timestamp with time zone,
|
||||
transfer_request_time timestamp with time zone,
|
||||
transfer_status text,
|
||||
update_timestamp timestamp with time zone
|
||||
update_timestamp timestamp with time zone,
|
||||
transfer_history_entry_id bigint,
|
||||
transfer_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
@ -273,8 +275,8 @@ CREATE TABLE public."ContactHistory" (
|
|||
addr_local_org text,
|
||||
addr_local_type text,
|
||||
search_name text,
|
||||
transfer_gaining_poll_message_id bigint,
|
||||
transfer_losing_poll_message_id bigint,
|
||||
transfer_poll_message_id_1 bigint,
|
||||
transfer_poll_message_id_2 bigint,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -292,7 +294,9 @@ CREATE TABLE public."ContactHistory" (
|
|||
last_epp_update_time timestamp with time zone,
|
||||
statuses text[],
|
||||
contact_repo_id text NOT NULL,
|
||||
update_timestamp timestamp with time zone
|
||||
update_timestamp timestamp with time zone,
|
||||
transfer_history_entry_id bigint,
|
||||
transfer_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
@ -351,8 +355,8 @@ CREATE TABLE public."Domain" (
|
|||
billing_contact text,
|
||||
registrant_contact text,
|
||||
tech_contact text,
|
||||
transfer_gaining_poll_message_id bigint,
|
||||
transfer_losing_poll_message_id bigint,
|
||||
transfer_poll_message_id_1 bigint,
|
||||
transfer_poll_message_id_2 bigint,
|
||||
transfer_billing_cancellation_id bigint,
|
||||
transfer_billing_event_id bigint,
|
||||
transfer_billing_recurrence_id bigint,
|
||||
|
@ -377,7 +381,9 @@ CREATE TABLE public."Domain" (
|
|||
deletion_poll_message_history_id bigint,
|
||||
transfer_billing_recurrence_history_id bigint,
|
||||
transfer_autorenew_poll_message_history_id bigint,
|
||||
transfer_billing_event_history_id bigint
|
||||
transfer_billing_event_history_id bigint,
|
||||
transfer_history_entry_id bigint,
|
||||
transfer_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
@ -438,8 +444,8 @@ CREATE TABLE public."DomainHistory" (
|
|||
transfer_renew_period_unit text,
|
||||
transfer_renew_period_value integer,
|
||||
transfer_registration_expiration_time timestamp with time zone,
|
||||
transfer_gaining_poll_message_id bigint,
|
||||
transfer_losing_poll_message_id bigint,
|
||||
transfer_poll_message_id_1 bigint,
|
||||
transfer_poll_message_id_2 bigint,
|
||||
transfer_client_txn_id text,
|
||||
transfer_server_txn_id text,
|
||||
transfer_gaining_registrar_id text,
|
||||
|
@ -465,7 +471,9 @@ CREATE TABLE public."DomainHistory" (
|
|||
deletion_poll_message_history_id bigint,
|
||||
transfer_billing_recurrence_history_id bigint,
|
||||
transfer_autorenew_poll_message_history_id bigint,
|
||||
transfer_billing_event_history_id bigint
|
||||
transfer_billing_event_history_id bigint,
|
||||
transfer_history_entry_id bigint,
|
||||
transfer_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue