adapter-sqlite: all repo implementations + wire fn + migrations copy

This commit is contained in:
2026-07-12 02:34:12 +02:00
parent 1428f264bb
commit e8179d1f53
29 changed files with 1987 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ impl DbPool {
match self {
#[cfg(feature = "sqlite")]
Self::Sqlite(pool) => {
sqlx::migrate!("../../k-tv-backend/migrations_sqlite")
sqlx::migrate!("../../migrations_sqlite")
.run(pool)
.await?;
}