web3-proxy/entities/src/user_keys.rs

37 lines
880 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::*;
#[derive(Clone, Debug, PartialEq, DeriveEntityModel)]
#[sea_orm(table_name = "user_keys")]
pub struct Model {
2022-08-05 01:25:54 +03:00
#[sea_orm(primary_key, auto_increment = false)]
pub uuid: Vec<u8>,
pub user_uuid: Vec<u8>,
2022-08-04 02:17:02 +03:00
#[sea_orm(unique)]
2022-08-03 03:31:47 +03:00
pub api_key: String,
pub description: String,
pub private_txs: i8,
pub active: i8,
}
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
pub enum Relation {
#[sea_orm(
belongs_to = "super::user::Entity",
2022-08-05 01:25:54 +03:00
from = "Column::UserUuid",
to = "super::user::Column::Uuid",
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 {}