mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-11 13:40:09 +00:00
514f2222e0
* convert naive time to utc time * compounding fixes * cargo fmt * fix the rest * fix down migration * fix migrations * fix after merge * clippy fix * ap-fed 0.5.0 --------- Co-authored-by: Nutomic <me@nutomic.com>
24 lines
708 B
Rust
24 lines
708 B
Rust
use crate::newtypes::LocalUserId;
|
|
#[cfg(feature = "full")]
|
|
use crate::schema::email_verification;
|
|
use chrono::{DateTime, Utc};
|
|
|
|
#[derive(Clone)]
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = email_verification))]
|
|
pub struct EmailVerification {
|
|
pub id: i32,
|
|
pub local_user_id: LocalUserId,
|
|
pub email: String,
|
|
pub verification_code: String,
|
|
pub published: DateTime<Utc>,
|
|
}
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
#[cfg_attr(feature = "full", diesel(table_name = email_verification))]
|
|
pub struct EmailVerificationForm {
|
|
pub local_user_id: LocalUserId,
|
|
pub email: String,
|
|
pub verification_token: String,
|
|
}
|