mirror of
https://github.com/google/nomulus.git
synced 2025-08-19 07:54:09 +02:00
Restore ofy keys in DomainTransferData (#838)
* Restore ofy keys in DomainTransferData Restore composite VKeys correctly in DomainTransferData (they were previously missing their ofy keys). * Use "AlsoLoad" to populate history ids
This commit is contained in:
parent
55e4f7cd7e
commit
c0b1e2f714
8 changed files with 217 additions and 7 deletions
|
@ -369,7 +369,10 @@ CREATE TABLE public."Domain" (
|
|||
autorenew_end_time timestamp with time zone,
|
||||
billing_recurrence_history_id bigint,
|
||||
autorenew_poll_message_history_id bigint,
|
||||
deletion_poll_message_history_id bigint
|
||||
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
|
||||
);
|
||||
|
||||
|
||||
|
@ -439,7 +442,10 @@ CREATE TABLE public."DomainHistory" (
|
|||
history_period_value integer,
|
||||
billing_recurrence_history_id bigint,
|
||||
autorenew_poll_message_history_id bigint,
|
||||
deletion_poll_message_history_id bigint
|
||||
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
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue