_This change should have no user impact._ This adds a basic test for database migration, and makes the necessary changes to make that possible.
13 lines
293 B
Swift
13 lines
293 B
Swift
//
|
|
// Copyright (c) 2022 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
import SignalServiceKit
|
|
|
|
enum DatabaseTestHelpers {
|
|
class TestSDSDatabaseStorageDelegate: SDSDatabaseStorageDelegate {
|
|
var storageCoordinatorState: StorageCoordinatorState { .GRDB }
|
|
}
|
|
}
|