37 lines
867 B
Rust
37 lines
867 B
Rust
|
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.1
|
||
|
|
||
|
use sea_orm::entity::prelude::*;
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
|
||
|
#[sea_orm(table_name = "user")]
|
||
|
pub struct Model {
|
||
|
#[sea_orm(primary_key)]
|
||
|
pub id: i64,
|
||
|
#[sea_orm(unique)]
|
||
|
pub address: String,
|
||
|
pub description: String,
|
||
|
pub email: String,
|
||
|
}
|
||
|
|
||
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
||
|
pub enum Relation {
|
||
|
#[sea_orm(has_many = "super::secondary_user::Entity")]
|
||
|
SecondaryUser,
|
||
|
#[sea_orm(has_many = "super::user_keys::Entity")]
|
||
|
UserKeys,
|
||
|
}
|
||
|
|
||
|
impl Related<super::secondary_user::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::SecondaryUser.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl Related<super::user_keys::Entity> for Entity {
|
||
|
fn to() -> RelationDef {
|
||
|
Relation::UserKeys.def()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
impl ActiveModelBehavior for ActiveModel {}
|