tsk-244: Remove code causing migrations to be ran twice (#246)

* tsk-244: Remove code causing migrations to be ran twice

* tsk-244: Cleanup

* tsk-244: Version bump
This commit was merged in pull request #246.
This commit is contained in:
KD
2025-11-06 12:56:47 -05:00
committed by GitHub
parent 01b34c9848
commit dbbbf02acf
4 changed files with 13 additions and 13 deletions
+1 -1
View File
@@ -236,7 +236,7 @@ pub async fn app() -> axum::Router {
let pool = crate::db::create_pool()
.await
.expect("Failed to create pool");
// TODO: Look into handling this. Seems redundant to run migrations multiple times
crate::db::migrations(&pool).await;
let cors = cors::configure_cors().await;