mirror of
https://github.com/google/nomulus
synced 2026-02-13 00:02:04 +00:00
Add password reset Java object (#2765)
A future PR will add the actions that save and use this object. That future PR will also require loading RegistrarPoc objects given the registrar ID, hence the change in that class.
This commit is contained in:
@@ -562,6 +562,17 @@
|
||||
primary key (package_promotion_id)
|
||||
);
|
||||
|
||||
create table "PasswordResetRequest" (
|
||||
verification_code text not null,
|
||||
destination_email text not null,
|
||||
fulfillment_time timestamp(6) with time zone,
|
||||
registrar_id text not null,
|
||||
request_time timestamp(6) with time zone not null,
|
||||
requester text not null,
|
||||
type text not null check (type in ('EPP','REGISTRY_LOCK')),
|
||||
primary key (verification_code)
|
||||
);
|
||||
|
||||
create table "PollMessage" (
|
||||
type text not null,
|
||||
poll_message_id bigint not null,
|
||||
|
||||
Reference in New Issue
Block a user