web3-proxy/entities/src/user_keys.rs

58 lines
1.6 KiB
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
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 {
#[sea_orm(primary_key)]
pub id: u64,
pub user_id: u64,
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,
pub requests_per_minute: Option<u64>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Decimal(Some((5, 4)))")]
pub log_revert_chance: Decimal,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_ips: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_origins: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_referers: Option<String>,
2022-09-24 03:14:35 +03:00
#[sea_orm(column_type = "Text", nullable)]
pub allowed_user_agents: Option<String>,
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,
2022-09-24 03:14:35 +03:00
#[sea_orm(has_many = "super::revert_logs::Entity")]
RevertLogs,
2022-08-03 03:31:47 +03:00
}
impl Related<super::user::Entity> for Entity {
fn to() -> RelationDef {
Relation::User.def()
}
}
2022-09-24 03:14:35 +03:00
impl Related<super::revert_logs::Entity> for Entity {
fn to() -> RelationDef {
Relation::RevertLogs.def()
}
}
2022-08-03 03:31:47 +03:00
impl ActiveModelBehavior for ActiveModel {}