web3-proxy/entities/src/user_tier.rs

29 lines
726 B
Rust
Raw Normal View History

//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.7
2022-11-01 21:54:39 +03:00
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,
2022-11-01 22:12:57 +03:00
pub max_requests_per_period: Option<u64>,
2022-11-01 21:54:39 +03:00
pub max_concurrent_requests: Option<u32>,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(has_many = "super::user::Entity")]
User,
}
impl Related<super::user::Entity> for Entity {
fn to() -> RelationDef {
Relation::User.def()
}
}
impl ActiveModelBehavior for ActiveModel {}