2022-11-01 21:54:39 +03:00
|
|
|
//! SeaORM Entity. Generated by sea-orm-codegen 0.10.1
|
2022-09-24 03:14:35 +03:00
|
|
|
|
|
|
|
use super::sea_orm_active_enums::Method;
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2022-10-25 06:41:59 +03:00
|
|
|
#[derive(Clone, Debug, PartialEq, DeriveEntityModel, Eq, Serialize, Deserialize)]
|
2022-11-01 21:54:39 +03:00
|
|
|
#[sea_orm(table_name = "revert_log")]
|
2022-09-24 03:14:35 +03:00
|
|
|
pub struct Model {
|
|
|
|
#[sea_orm(primary_key)]
|
|
|
|
pub id: u64,
|
2022-10-27 03:12:42 +03:00
|
|
|
pub rpc_key_id: u64,
|
2022-09-24 03:14:35 +03:00
|
|
|
pub timestamp: DateTimeUtc,
|
|
|
|
pub method: Method,
|
|
|
|
pub to: Vec<u8>,
|
2022-09-24 10:03:29 +03:00
|
|
|
#[sea_orm(column_type = "Text", nullable)]
|
|
|
|
pub call_data: Option<String>,
|
2022-10-26 00:10:05 +03:00
|
|
|
pub chain_id: u64,
|
2022-09-24 03:14:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, EnumIter, DeriveRelation)]
|
|
|
|
pub enum Relation {
|
|
|
|
#[sea_orm(
|
2022-11-01 21:54:39 +03:00
|
|
|
belongs_to = "super::rpc_key::Entity",
|
2022-10-27 03:12:42 +03:00
|
|
|
from = "Column::RpcKeyId",
|
2022-11-01 21:54:39 +03:00
|
|
|
to = "super::rpc_key::Column::Id",
|
2022-09-24 03:14:35 +03:00
|
|
|
on_update = "NoAction",
|
|
|
|
on_delete = "NoAction"
|
|
|
|
)]
|
2022-11-01 21:54:39 +03:00
|
|
|
RpcKey,
|
2022-09-24 03:14:35 +03:00
|
|
|
}
|
|
|
|
|
2022-11-01 21:54:39 +03:00
|
|
|
impl Related<super::rpc_key::Entity> for Entity {
|
2022-09-24 03:14:35 +03:00
|
|
|
fn to() -> RelationDef {
|
2022-11-01 21:54:39 +03:00
|
|
|
Relation::RpcKey.def()
|
2022-09-24 03:14:35 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActiveModelBehavior for ActiveModel {}
|