mirror of
https://github.com/google/nomulus.git
synced 2025-05-19 02:39:34 +02:00
Add a test to verify generated schema (#377)
This commit is contained in:
parent
6af1896362
commit
98414cb7cb
2 changed files with 22 additions and 10 deletions
|
@ -44,9 +44,9 @@
|
|||
repo_id text not null,
|
||||
creation_client_id text,
|
||||
current_sponsor_client_id text,
|
||||
deletion_time bytea,
|
||||
deletion_time timestamptz,
|
||||
last_epp_update_client_id text,
|
||||
last_epp_update_time bytea,
|
||||
last_epp_update_time timestamptz,
|
||||
revisions bytea,
|
||||
auth_info_repo_id text,
|
||||
auth_info_value text,
|
||||
|
@ -55,12 +55,12 @@
|
|||
delete_poll_message bytea,
|
||||
fully_qualified_domain_name text,
|
||||
idn_table_name text,
|
||||
last_transfer_time bytea,
|
||||
launch_notice_accepted_time bytea,
|
||||
launch_notice_expiration_time bytea,
|
||||
last_transfer_time timestamptz,
|
||||
launch_notice_accepted_time timestamptz,
|
||||
launch_notice_expiration_time timestamptz,
|
||||
launch_notice_tcn_id text,
|
||||
launch_notice_validator_id text,
|
||||
registration_expiration_time bytea,
|
||||
registration_expiration_time timestamptz,
|
||||
smd_id text,
|
||||
tld text,
|
||||
transfer_data_server_approve_autorenrew_event bytea,
|
||||
|
@ -70,11 +70,11 @@
|
|||
value int4,
|
||||
client_transaction_id text,
|
||||
server_transaction_id text,
|
||||
transfer_data_registration_expiration_time bytea,
|
||||
transfer_data_registration_expiration_time timestamptz,
|
||||
gaining_client_id text,
|
||||
losing_client_id text,
|
||||
pending_transfer_expiration_time bytea,
|
||||
transfer_request_time bytea,
|
||||
pending_transfer_expiration_time timestamptz,
|
||||
transfer_request_time timestamptz,
|
||||
transfer_status int4,
|
||||
primary key (repo_id)
|
||||
);
|
||||
|
@ -117,7 +117,7 @@
|
|||
billing_event_one_time bytea,
|
||||
billing_event_recurring bytea,
|
||||
client_id text,
|
||||
expiration_time bytea,
|
||||
expiration_time timestamptz,
|
||||
type int4,
|
||||
primary key (id)
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue