1
0
Fork 0
mirror of https://github.com/LemmyNet/lemmy.git synced 2025-01-23 22:26:45 +00:00
lemmy/server/migrations/2019-10-24-002614_create_password_reset_request/up.sql

7 lines
221 B
MySQL
Raw Normal View History

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()
);