web3-proxy/entities/src/user_keys.rs

40 lines
973 B
Rust
Raw Normal View History

2022-08-03 03:31:47 +03:00
//! SeaORM Entity. Generated by sea-orm-codegen 0.9.1
use sea_orm::entity::prelude::*;
use sea_orm::prelude::Uuid;
use serde::{Deserialize, Serialize};
2022-08-03 03:31:47 +03:00
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Serialize, Deserialize)]
2022-08-03 03:31:47 +03:00
#[sea_orm(table_name = "user_keys")]
pub struct Model {
#[sea_orm(primary_key)]
pub id: i64,
pub user_id: i64,
2022-08-04 02:17:02 +03:00
#[sea_orm(unique)]
pub api_key: Uuid,
pub description: Option<String>,
pub private_txs: bool,
pub active: bool,
2022-08-07 09:48:57 +03:00
pub requests_per_second: u32,
2022-08-03 03:31:47 +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",
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 {}