mirror of
https://github.com/google/nomulus.git
synced 2025-08-11 03:59:37 +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
15587f03d6
commit
bb2f35b673
8 changed files with 160 additions and 16 deletions
|
@ -777,7 +777,8 @@ CREATE TABLE public."RegistrarPoc" (
|
|||
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,
|
||||
registry_lock_email_address text
|
||||
registry_lock_email_address text,
|
||||
registrar_id text NOT NULL
|
||||
);
|
||||
|
||||
|
||||
|
@ -1154,7 +1155,7 @@ ALTER TABLE ONLY public."PremiumList"
|
|||
--
|
||||
|
||||
ALTER TABLE ONLY public."RegistrarPoc"
|
||||
ADD CONSTRAINT "RegistrarPoc_pkey" PRIMARY KEY (email_address);
|
||||
ADD CONSTRAINT "RegistrarPoc_pkey" PRIMARY KEY (registrar_id, email_address);
|
||||
|
||||
|
||||
--
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue