57 lines
1.6 KiB
Rust
57 lines
1.6 KiB
Rust
//! `SeaORM` Entity, @generated by sea-orm-codegen 1.1.20
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "users")]
|
|
pub struct Model {
|
|
pub created_at: DateTimeWithTimeZone,
|
|
pub updated_at: DateTimeWithTimeZone,
|
|
#[sea_orm(primary_key)]
|
|
pub id: i32,
|
|
pub pid: Uuid,
|
|
#[sea_orm(unique)]
|
|
pub email: String,
|
|
pub password: String,
|
|
#[sea_orm(unique)]
|
|
pub api_key: String,
|
|
pub name: String,
|
|
pub reset_token: Option<String>,
|
|
pub reset_sent_at: Option<DateTimeWithTimeZone>,
|
|
pub email_verification_token: Option<String>,
|
|
pub email_verification_sent_at: Option<DateTimeWithTimeZone>,
|
|
pub email_verified_at: Option<DateTimeWithTimeZone>,
|
|
pub magic_link_token: Option<String>,
|
|
pub magic_link_expiration: Option<DateTimeWithTimeZone>,
|
|
pub theme: String,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(has_many = "super::audio_albums::Entity")]
|
|
AudioAlbums,
|
|
#[sea_orm(has_many = "super::audit_logs::Entity")]
|
|
AuditLogs,
|
|
#[sea_orm(has_many = "super::blog_articles::Entity")]
|
|
BlogArticles,
|
|
}
|
|
|
|
impl Related<super::audio_albums::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::AudioAlbums.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::audit_logs::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::AuditLogs.def()
|
|
}
|
|
}
|
|
|
|
impl Related<super::blog_articles::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::BlogArticles.def()
|
|
}
|
|
}
|