Remove the GAIA ID field from User (#2170)

It is not used and it is not possible to derive the GAIA ID when
creating a new User from the email address alone.
This commit is contained in:
Lai Jiang
2023-10-04 15:32:03 -04:00
committed by GitHub
parent 1580555d30
commit 7a84844000
15 changed files with 12 additions and 51 deletions
@@ -756,7 +756,6 @@
id bigserial not null,
update_timestamp timestamptz,
email_address text not null,
gaia_id text,
registry_lock_password_hash text,
registry_lock_password_salt text,
global_role text not null,
@@ -852,7 +851,6 @@ create index reservedlist_name_idx on "ReservedList" (name);
create index spec11threatmatch_registrar_id_idx on "Spec11ThreatMatch" (registrar_id);
create index spec11threatmatch_tld_idx on "Spec11ThreatMatch" (tld);
create index spec11threatmatch_check_date_idx on "Spec11ThreatMatch" (check_date);
create index user_gaia_id_idx on "User" (gaia_id);
create index user_email_address_idx on "User" (email_address);
alter table if exists "DelegationSignerData"