2023-01-26 08:24:09 +03:00
|
|
|
use sea_orm_migration::prelude::*;
|
|
|
|
|
|
|
|
#[derive(DeriveMigrationName)]
|
|
|
|
pub struct Migration;
|
|
|
|
|
|
|
|
#[async_trait::async_trait]
|
|
|
|
impl MigrationTrait for Migration {
|
|
|
|
async fn up(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
|
|
|
manager
|
|
|
|
.create_table(
|
|
|
|
Table::create()
|
|
|
|
.table(RpcAccountingV2::Table)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::Id)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null()
|
|
|
|
.auto_increment()
|
|
|
|
.primary_key(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::RpcKeyId)
|
|
|
|
.big_unsigned()
|
2023-04-06 00:36:51 +03:00
|
|
|
.not_null()
|
|
|
|
.default(0),
|
2023-01-26 08:24:09 +03:00
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::ChainId)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
2023-04-06 00:36:51 +03:00
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::Origin)
|
|
|
|
.string()
|
|
|
|
.not_null()
|
|
|
|
.default(""),
|
|
|
|
)
|
2023-01-26 08:24:09 +03:00
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::PeriodDatetime)
|
|
|
|
.timestamp()
|
|
|
|
.not_null(),
|
|
|
|
)
|
2023-04-06 00:36:51 +03:00
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::Method)
|
|
|
|
.string()
|
|
|
|
.not_null()
|
|
|
|
.default(""),
|
|
|
|
)
|
2023-01-26 08:24:09 +03:00
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::ArchiveNeeded)
|
|
|
|
.boolean()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::ErrorResponse)
|
|
|
|
.boolean()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::FrontendRequests)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::BackendRequests)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::BackendRetries)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::NoServers)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::CacheMisses)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::CacheHits)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::SumRequestBytes)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::SumResponseMillis)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
|
|
|
.col(
|
|
|
|
ColumnDef::new(RpcAccountingV2::SumResponseBytes)
|
|
|
|
.big_unsigned()
|
|
|
|
.not_null(),
|
|
|
|
)
|
2023-04-06 00:55:37 +03:00
|
|
|
// cannot use NULL columns for any of these because unique indexes allow duplicates on NULL
|
2023-01-26 08:24:09 +03:00
|
|
|
.index(
|
|
|
|
sea_query::Index::create()
|
|
|
|
.col(RpcAccountingV2::RpcKeyId)
|
|
|
|
.col(RpcAccountingV2::ChainId)
|
|
|
|
.col(RpcAccountingV2::Origin)
|
|
|
|
.col(RpcAccountingV2::PeriodDatetime)
|
|
|
|
.col(RpcAccountingV2::Method)
|
|
|
|
.col(RpcAccountingV2::ArchiveNeeded)
|
|
|
|
.col(RpcAccountingV2::ErrorResponse)
|
|
|
|
.unique(),
|
|
|
|
)
|
2023-04-06 00:55:37 +03:00
|
|
|
// cannot use a foreign key for RpcKeyId because the UNIQUE index uses 0 instead of NULL
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::RpcKeyId))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::ChainId))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::Origin))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::PeriodDatetime))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::Method))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::ArchiveNeeded))
|
|
|
|
.index(sea_query::Index::create().col(RpcAccountingV2::ErrorResponse))
|
2023-01-26 08:24:09 +03:00
|
|
|
.to_owned(),
|
|
|
|
)
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn down(&self, manager: &SchemaManager) -> Result<(), DbErr> {
|
|
|
|
manager
|
|
|
|
.drop_table(Table::drop().table(RpcAccountingV2::Table).to_owned())
|
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Partial table definition
|
|
|
|
#[derive(Iden)]
|
|
|
|
pub enum RpcKey {
|
|
|
|
Table,
|
|
|
|
Id,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Iden)]
|
|
|
|
enum RpcAccountingV2 {
|
|
|
|
Table,
|
|
|
|
Id,
|
|
|
|
RpcKeyId,
|
|
|
|
ChainId,
|
|
|
|
Origin,
|
|
|
|
PeriodDatetime,
|
|
|
|
Method,
|
|
|
|
ArchiveNeeded,
|
|
|
|
ErrorResponse,
|
|
|
|
FrontendRequests,
|
|
|
|
BackendRequests,
|
|
|
|
BackendRetries,
|
|
|
|
NoServers,
|
|
|
|
CacheMisses,
|
|
|
|
CacheHits,
|
|
|
|
SumRequestBytes,
|
|
|
|
SumResponseMillis,
|
|
|
|
SumResponseBytes,
|
|
|
|
}
|