//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3 use sea_orm::entity::prelude::*; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)] #[sea_orm(table_name = "user_tier")] pub struct Model { #[sea_orm(primary_key)] pub id: u64, pub title: String, pub max_requests_per_period: Option, pub max_concurrent_requests: Option, pub downgrade_tier_id: Option, } #[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)] pub enum Relation { #[sea_orm(has_many = "super::user::Entity")] User, #[sea_orm( belongs_to = "Entity", from = "Column::DowngradeTierId", to = "Column::Id", on_update = "NoAction", on_delete = "NoAction" )] SelfRef, } impl Related for Entity { fn to() -> RelationDef { Relation::User.def() } } impl ActiveModelBehavior for ActiveModel {}