Update key management for database service

This commit is contained in:
Oleksii Zghurskyi 2025-08-19 16:24:51 +03:00
commit 0118981e0a
8 changed files with 235 additions and 284 deletions

View file

@ -12,7 +12,7 @@ import DataLiteCore
init() throws {
let connection = try Connection(location: .inMemory, options: .readwrite)
self.connection = connection
self.migrationService = .init(service: .init(connection: connection), storage: .init())
self.migrationService = .init(service: try .init(connection: connection), storage: .init())
}
@Test func addMigration() throws {