mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 10:10:01 +00:00
7 lines
221 B
MySQL
7 lines
221 B
MySQL
|
create table password_reset_request (
|
||
|
id serial primary key,
|
||
|
user_id int references user_ on update cascade on delete cascade not null,
|
||
|
token_encrypted text not null,
|
||
|
published timestamp not null default now()
|
||
|
);
|