1
0
mirror of https://github.com/google/nomulus synced 2026-07-20 15:02:30 +00:00

Fix VKey reconstruction issue in BillingEvent (#805)

* Fix VKey reconstruction issue in BillingEvent

* Rebase on head
This commit is contained in:
Shicong Huang
2020-09-23 19:04:58 -04:00
committed by GitHub
parent 4aaf31be9f
commit 1056fdbb64
5 changed files with 63 additions and 152 deletions
@@ -30,7 +30,7 @@ create sequence temp_history_id_sequence start 1 increment 50;
);
create table "BillingCancellation" (
billing_cancellation_id bigserial not null,
billing_cancellation_id int8 not null,
registrar_id text not null,
domain_history_revision_id int8 not null,
domain_repo_id text not null,
@@ -45,7 +45,7 @@ create sequence temp_history_id_sequence start 1 increment 50;
);
create table "BillingEvent" (
billing_event_id bigserial not null,
billing_event_id int8 not null,
registrar_id text not null,
domain_history_revision_id int8 not null,
domain_repo_id text not null,
@@ -64,7 +64,7 @@ create sequence temp_history_id_sequence start 1 increment 50;
);
create table "BillingRecurrence" (
billing_recurrence_id bigserial not null,
billing_recurrence_id int8 not null,
registrar_id text not null,
domain_history_revision_id int8 not null,
domain_repo_id text not null,