eb7b98fdbe
* add migration for splitting errors * fix type from u32 to u64 * update entities to match migrations * no migration needed. these are only in stats * add user_error_response to influx * only if detailed * set error_response and user_error_response * 0 cost error responses * only 33 migrations now * put macros back * get the stat buffer sender to the TestApp helper * fixes
26 lines
860 B
Rust
26 lines
860 B
Rust
//! `SeaORM` Entity. Generated by sea-orm-codegen 0.11.3
|
|
|
|
use sea_orm::entity::prelude::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, EnumIter, DeriveActiveEnum, Serialize, Deserialize)]
|
|
#[sea_orm(rs_type = "String", db_type = "Enum", enum_name = "method")]
|
|
pub enum Method {
|
|
#[sea_orm(string_value = "eth_call")]
|
|
EthCall,
|
|
#[sea_orm(string_value = "eth_estimateGas")]
|
|
EthEstimateGas,
|
|
#[sea_orm(string_value = "eth_sendRawTransaction")]
|
|
EthSendRawTransaction,
|
|
}
|
|
#[derive(Debug, Clone, PartialEq, Eq, EnumIter, DeriveActiveEnum, Serialize, Deserialize)]
|
|
#[sea_orm(rs_type = "String", db_type = "Enum", enum_name = "role")]
|
|
pub enum Role {
|
|
#[sea_orm(string_value = "owner")]
|
|
Owner,
|
|
#[sea_orm(string_value = "admin")]
|
|
Admin,
|
|
#[sea_orm(string_value = "collaborator")]
|
|
Collaborator,
|
|
}
|