2022-11-01 21:54:39 +03:00
|
|
|
//! SeaORM Entity. Generated by sea-orm-codegen 0.10.1
|
2022-08-03 03:31:47 +03:00
|
|
|
|
|
|
|
use sea_orm::entity::prelude::*;
|
2022-08-05 22:47:50 +03:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2022-10-25 06:41:59 +03:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
2022-08-03 03:31:47 +03:00
|
|
|
#[sea_orm(table_name = "user")]
|
|
|
|
pub struct Model {
|
2022-08-06 03:07:12 +03:00
|
|
|
#[sea_orm(primary_key)]
|
2022-08-13 00:00:26 +03:00
|
|
|
pub id: u64,
|
2022-08-03 03:31:47 +03:00
|
|
|
#[sea_orm(unique)]
|
2022-08-06 03:07:12 +03:00
|
|
|
pub address: Vec<u8>,
|
2022-08-05 22:47:50 +03:00
|
|
|
pub description: Option<String>,
|
2022-08-04 02:17:02 +03:00
|
|
|
pub email: Option<String>,
|
2022-11-01 21:54:39 +03:00
|
|
|
pub user_tier_id: u64,
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {
|
2022-11-01 21:54:39 +03:00
|
|
|
#[sea_orm(
|
|
|
|
belongs_to = "super::user_tier::Entity",
|
|
|
|
from = "Column::UserTierId",
|
|
|
|
to = "super::user_tier::Column::Id",
|
|
|
|
on_update = "NoAction",
|
|
|
|
on_delete = "NoAction"
|
|
|
|
)]
|
|
|
|
UserTier,
|
|
|
|
#[sea_orm(has_many = "super::rpc_key::Entity")]
|
|
|
|
RpcKey,
|
2022-08-03 03:31:47 +03:00
|
|
|
#[sea_orm(has_many = "super::secondary_user::Entity")]
|
|
|
|
SecondaryUser,
|
|
|
|
}
|
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
impl Related<super::user_tier::Entity> for Entity {
|
2022-08-03 03:31:47 +03:00
|
|
|
fn to() -> RelationDef {
|
2022-11-01 21:54:39 +03:00
|
|
|
Relation::UserTier.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Related<super::rpc_key::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::RpcKey.def()
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
impl Related<super::secondary_user::Entity> for Entity {
|
2022-08-03 03:31:47 +03:00
|
|
|
fn to() -> RelationDef {
|
2022-11-01 21:54:39 +03:00
|
|
|
Relation::SecondaryUser.def()
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|