mirror of
https://github.com/google/nomulus.git
synced 2025-05-22 04:09:46 +02:00
Use composite primary key for RegistrarContact (#761)
* Use composite primary key for RegistrarPoc * Increase the serial number for flyway file and resolve comments * Rebase on HEAD * Rebase on HEAD
This commit is contained in:
parent
19d696798c
commit
e1f247f9f0
8 changed files with 160 additions and 16 deletions
|
@ -518,6 +518,7 @@ create sequence history_id_sequence start 1 increment 1;
|
|||
|
||||
create table "RegistrarPoc" (
|
||||
email_address text not null,
|
||||
registrar_id text not null,
|
||||
allowed_to_set_registry_lock_password boolean not null,
|
||||
fax_number text,
|
||||
gae_user_id text,
|
||||
|
@ -530,7 +531,7 @@ create sequence history_id_sequence start 1 increment 1;
|
|||
visible_in_domain_whois_as_abuse boolean not null,
|
||||
visible_in_whois_as_admin boolean not null,
|
||||
visible_in_whois_as_tech boolean not null,
|
||||
primary key (email_address)
|
||||
primary key (email_address, registrar_id)
|
||||
);
|
||||
|
||||
create table "RegistryLock" (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue