fix: clickhouse migrations should not run normally

This commit is contained in:
Michael H.
2026-07-30 19:23:10 +02:00
parent 0a53211389
commit 572b8027ff
4 changed files with 34 additions and 23 deletions
+3
View File
@@ -168,6 +168,9 @@ pub async fn update_bank_balances(pool: PgPool) -> eyre::Result<()> {
pub async fn run_migrations() -> eyre::Result<()> {
database::check_for_migrations().await?;
crate::clickhouse::run_migrations()
.await
.wrap_err("failed to run ClickHouse migrations")?;
Ok(())
}