mirror of
https://github.com/google/nomulus.git
synced 2025-08-19 07:54:09 +02:00
Add BillingVKey to restore symmetric VKey in GracePeriodBase (#902)
* Use PollMessageVKey to replace VKey<PollMessage> in DomainBase * Revert changes to DomainContent * Use BillingVKey in GracePeriodBase to restore symmetric vkey * Rebase on HEAD
This commit is contained in:
parent
495d7176d8
commit
6e2bbd1a7e
32 changed files with 3164 additions and 2677 deletions
|
@ -533,7 +533,9 @@ CREATE TABLE public."GracePeriod" (
|
|||
expiration_time timestamp with time zone NOT NULL,
|
||||
type text NOT NULL,
|
||||
billing_event_history_id bigint,
|
||||
billing_recurrence_history_id bigint
|
||||
billing_recurrence_history_id bigint,
|
||||
billing_event_domain_repo_id text,
|
||||
billing_recurrence_domain_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
@ -552,7 +554,9 @@ CREATE TABLE public."GracePeriodHistory" (
|
|||
expiration_time timestamp with time zone NOT NULL,
|
||||
type text NOT NULL,
|
||||
domain_history_revision_id bigint,
|
||||
grace_period_id bigint NOT NULL
|
||||
grace_period_id bigint NOT NULL,
|
||||
billing_event_domain_repo_id text,
|
||||
billing_recurrence_domain_repo_id text
|
||||
);
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue