mirror of
https://github.com/google/nomulus.git
synced 2025-05-22 04:09:46 +02:00
Create a converter for sets of InetAddresses and use it in HostResource (#612)
* Create a converter for sets of inetAddresses and use it in HostResource This can just be a set of strings where each string represents an address; there's no need for it to be a separate table. This allows for simplification of the SQL schema. * Regenerate golden SQL file after renaming v28 -> v29 * Add more tests and rename a typo in the file * Refactor common test code and use tm methods * Use JUnit5 API * Rename test entity
This commit is contained in:
parent
fbe613c209
commit
436137444a
7 changed files with 141 additions and 31 deletions
|
@ -225,17 +225,13 @@
|
|||
last_epp_update_time timestamptz,
|
||||
statuses text[],
|
||||
fully_qualified_host_name text,
|
||||
inet_addresses text[],
|
||||
last_superordinate_change timestamptz,
|
||||
last_transfer_time timestamptz,
|
||||
superordinate_domain text,
|
||||
primary key (repo_id)
|
||||
);
|
||||
|
||||
create table "HostResource_inetAddresses" (
|
||||
host_resource_repo_id text not null,
|
||||
inet_addresses bytea
|
||||
);
|
||||
|
||||
create table "Lock" (
|
||||
resource_name text not null,
|
||||
tld text not null,
|
||||
|
@ -437,11 +433,6 @@ create index reservedlist_name_idx on "ReservedList" (name);
|
|||
foreign key (domain_repo_id)
|
||||
references "Domain";
|
||||
|
||||
alter table if exists "HostResource_inetAddresses"
|
||||
add constraint FK6unwhfkcu3oq6q347fxvpagv
|
||||
foreign key (host_resource_repo_id)
|
||||
references "HostResource";
|
||||
|
||||
alter table if exists "PremiumEntry"
|
||||
add constraint FKo0gw90lpo1tuee56l0nb6y6g5
|
||||
foreign key (revision_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue