Fix: successive launches of the application fail because the closed range of the migrations to apply would be invalid (lower range > that upper range)

This commit is contained in:
Francisco Gindre 2022-10-20 11:17:34 -03:00
parent 7847a7195e
commit 78856c658a
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class MigrationManager {
}
static let latestCacheDbMigration: CacheDbMigration = CacheDbMigration.none
static let latestPendingDbMigration: PendingDbMigration = PendingDbMigration.v1
static let latestPendingDbMigration: PendingDbMigration = PendingDbMigration.v2
var cacheDb: ConnectionProvider
var pendingDb: ConnectionProvider