web3-proxy/entities/src/login.rs

39 lines
978 B
Rust
Raw Normal View History

2023-02-19 23:27:53 +03:00
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.10.6
2022-12-14 05:13:23 +03:00
2023-01-17 22:15:46 +03:00
use crate::serialization;
2022-12-14 05:13:23 +03:00
use sea_orm::entity::prelude::*;
use serde::{Deserialize, Serialize};
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
#[sea_orm(table_name = "login")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: u64,
#[sea_orm(unique)]
2023-01-17 22:15:46 +03:00
#[serde(serialize_with = "serialization::uuid_as_ulid")]
pub bearer_token: Uuid,
2022-12-14 05:13:23 +03:00
pub user_id: u64,
pub expires_at: DateTimeUtc,
2023-02-19 23:34:39 +03:00
pub read_only: bool,
2022-12-14 05:13:23 +03:00
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
belongs_to = "super::user::Entity",
from = "Column::UserId",
to = "super::user::Column::Id",
on_update = "NoAction",
on_delete = "NoAction"
)]
User,
}
impl Related<super::user::Entity> for Entity {
fn to() -> RelationDef {
Relation::User.def()
}
}
impl ActiveModelBehavior for ActiveModel {}