Remove ID field from User in Java classes and remove UserDao (#2517)

This is the first step in the field removal (second will be removing the
column from SQL once this is deployed).

There's no point in using a UserDao versus just doing the standard
loading-from-DB that we do everywhere else. No need to special-case it.
This commit is contained in:
gbrodman
2024-08-05 20:36:17 +00:00
committed by GitHub
parent 2b98e6f177
commit 3c126ddfd4
23 changed files with 116 additions and 288 deletions
@@ -893,7 +893,6 @@
global_role text not null,
is_admin boolean not null,
registrar_roles hstore,
id int8,
primary key (email_address)
);
@@ -905,7 +904,6 @@
history_type text not null,
history_url text not null,
email_address text not null,
user_id int8 not null,
registry_lock_email_address text,
registry_lock_password_hash text,
registry_lock_password_salt text,