2022-08-03 03:31:47 +03:00
|
|
|
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.1
|
|
|
|
|
|
|
|
use sea_orm::entity::prelude::*;
|
2022-08-05 22:47:50 +03:00
|
|
|
use sea_orm::prelude::Uuid;
|
|
|
|
use serde::{Deserialize, Serialize};
|
2022-08-03 03:31:47 +03:00
|
|
|
|
2022-08-15 20:50:14 +03:00
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel, Serialize, Deserialize)]
|
2022-08-03 03:31:47 +03:00
|
|
|
#[sea_orm(table_name = "user_keys")]
|
|
|
|
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,
|
|
|
|
pub user_id: u64,
|
2022-08-04 02:17:02 +03:00
|
|
|
#[sea_orm(unique)]
|
2022-08-05 22:47:50 +03:00
|
|
|
pub api_key: Uuid,
|
|
|
|
pub description: Option<String>,
|
|
|
|
pub private_txs: bool,
|
|
|
|
pub active: bool,
|
2022-09-21 22:54:40 +03:00
|
|
|
pub requests_per_minute: u64,
|
2022-08-03 03:31:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {
|
|
|
|
#[sea_orm(
|
|
|
|
belongs_to = "super::user::Entity",
|
2022-08-06 03:07:12 +03:00
|
|
|
from = "Column::UserId",
|
|
|
|
to = "super::user::Column::Id",
|
2022-08-03 03:31:47 +03:00
|
|
|
on_update = "NoAction",
|
|
|
|
on_delete = "NoAction"
|
|
|
|
)]
|
|
|
|
User,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Related<super::user::Entity> for Entity {
|
|
|
|
fn to() -> RelationDef {
|
|
|
|
Relation::User.def()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|