lemmy/crates/db_schema/src/source/password_reset_request.rs

18 lines
460 B
Rust
Raw Normal View History

use crate::schema::password_reset_request;
#[derive(Queryable, Identifiable, PartialEq, Debug)]
#[table_name = "password_reset_request"]
pub struct PasswordResetRequest {
pub id: i32,
pub token_encrypted: String,
pub published: chrono::NaiveDateTime,
2021-03-10 22:33:55 +00:00
pub local_user_id: i32,
}
#[derive(Insertable, AsChangeset)]
#[table_name = "password_reset_request"]
pub struct PasswordResetRequestForm {
2021-02-26 13:49:58 +00:00
pub local_user_id: i32,
pub token_encrypted: String,
}