38 lines
941 B
Rust
38 lines
941 B
Rust
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.1
|
|
|
|
use super::sea_orm_active_enums::Role;
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)]
|
|
#[sea_orm(table_name = "secondary_user")]
|
|
pub struct Model {
|
|
#[sea_orm(primary_key)]
|
|
pub id: u64,
|
|
pub user_id: u64,
|
|
pub address: Vec<u8>,
|
|
pub description: Option<String>,
|
|
pub email: Option<String>,
|
|
pub role: Role,
|
|
}
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
pub enum Relation {
|
|
#[sea_orm(
|
|
belongs_to = "super::user::Entity",
|
|
from = "Column::UserId",
|
|
to = "super::user::Column::Id",
|
|
on_update = "NoAction",
|
|
on_delete = "NoAction"
|
|
)]
|
|
User,
|
|
}
|
|
|
|
impl Related<super::user::Entity> for Entity {
|
|
fn to() -> RelationDef {
|
|
Relation::User.def()
|
|
}
|
|
}
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|