web3-proxy/entities/src/user.rs

63 lines
1.6 KiB
Rust
Raw Normal View History

2022-12-14 05:13:23 +03:00
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.5
2022-08-03 03:31:47 +03:00
2022-12-14 05:13:23 +03:00
use crate::serialization;
2022-08-03 03:31:47 +03:00
use sea_orm::entity::prelude::*;
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 {
#[sea_orm(primary_key)]
pub id: u64,
2022-08-03 03:31:47 +03:00
#[sea_orm(unique)]
2022-12-14 05:13:23 +03:00
#[serde(serialize_with = "serialization::vec_as_address")]
pub address: Vec<u8>,
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-12-14 05:13:23 +03:00
#[sea_orm(has_many = "super::login::Entity")]
Login,
#[sea_orm(has_many = "super::rpc_key::Entity")]
RpcKey,
#[sea_orm(has_many = "super::secondary_user::Entity")]
SecondaryUser,
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,
2022-08-03 03:31:47 +03:00
}
2022-12-14 05:13:23 +03:00
impl Related<super::login::Entity> for Entity {
2022-08-03 03:31:47 +03:00
fn to() -> RelationDef {
2022-12-14 05:13:23 +03:00
Relation::Login.def()
2022-11-01 21:54:39 +03:00
}
}
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
}
}
2022-12-14 05:13:23 +03:00
impl Related<super::user_tier::Entity> for Entity {
fn to() -> RelationDef {
Relation::UserTier.def()
}
}
2022-08-03 03:31:47 +03:00
impl ActiveModelBehavior for ActiveModel {}