removing database remove functionality

This commit is contained in:
filipriec
2025-02-24 23:04:49 +01:00
parent 160a5e488c
commit 04c7efe296

View File

@@ -28,10 +28,3 @@ pub async fn setup_test_db() -> PgPool {
pool
}
pub async fn clear_adresar_table(pool: &PgPool) {
sqlx::query("TRUNCATE adresar RESTART IDENTITY CASCADE")
.execute(pool)
.await
.expect("Failed to clear adresar table");
}