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:
@@ -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: -
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user