mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 02:00:01 +00:00
18 lines
448 B
Rust
18 lines
448 B
Rust
|
use crate::schema::password_reset_request;
|
||
|
|
||
|
#[derive(Queryable, Identifiable, PartialEq, Debug)]
|
||
|
#[table_name = "password_reset_request"]
|
||
|
pub struct PasswordResetRequest {
|
||
|
pub id: i32,
|
||
|
pub user_id: i32,
|
||
|
pub token_encrypted: String,
|
||
|
pub published: chrono::NaiveDateTime,
|
||
|
}
|
||
|
|
||
|
#[derive(Insertable, AsChangeset)]
|
||
|
#[table_name = "password_reset_request"]
|
||
|
pub struct PasswordResetRequestForm {
|
||
|
pub user_id: i32,
|
||
|
pub token_encrypted: String,
|
||
|
}
|