1
0
mirror of https://github.com/google/nomulus synced 2026-02-09 22:40:55 +00:00

Add a field to save the login email of a RegistrarPoc (#1849)

This will replace the gaeUserId field. For now the field is not used and
only added to alter the schema.
This commit is contained in:
Lai Jiang
2022-11-11 15:15:39 -05:00
committed by GitHub
parent 9d7e3cdf79
commit 592dadd12e
5 changed files with 4080 additions and 4016 deletions

View File

@@ -843,7 +843,8 @@ CREATE TABLE public."RegistrarPoc" (
visible_in_whois_as_admin boolean NOT NULL,
visible_in_whois_as_tech boolean NOT NULL,
registry_lock_email_address text,
registrar_id text NOT NULL
registrar_id text NOT NULL,
login_email_address text
);
@@ -2051,6 +2052,13 @@ CREATE INDEX registrar_name_idx ON public."Registrar" USING btree (registrar_nam
CREATE INDEX registrarpoc_gae_user_id_idx ON public."RegistrarPoc" USING btree (gae_user_id);
--
-- Name: registrarpoc_login_email_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX registrarpoc_login_email_idx ON public."RegistrarPoc" USING btree (login_email_address);
--
-- Name: reservedlist_name_idx; Type: INDEX; Schema: public; Owner: -
--