//! SeaORM Entity. Generated by sea-orm-codegen 0.9.1 use sea_orm::entity::prelude::*; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)] #[sea_orm(table_name = "user")] pub struct Model { #[sea_orm(primary_key)] pub id: u64, #[sea_orm(unique)] pub address: Vec, pub description: Option, pub email: Option, } #[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 for Entity { fn to() -> RelationDef { Relation::SecondaryUser.def() } } impl Related for Entity { fn to() -> RelationDef { Relation::UserKeys.def() } } impl ActiveModelBehavior for ActiveModel {}