mirror of
https://github.com/google/nomulus
synced 2026-08-04 14:26:12 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user