mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.2 KiB
Swift
38 lines
1.2 KiB
Swift
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
|
|
|
|
import Foundation
|
|
import GRDB
|
|
import SessionUtilitiesKit
|
|
|
|
public enum SNSnodeKit: MigratableTarget { // Just to make the external API nice
|
|
public static func migrations() -> TargetMigrations {
|
|
return TargetMigrations(
|
|
identifier: .snodeKit,
|
|
migrations: [
|
|
[
|
|
_001_InitialSetupMigration.self,
|
|
_002_SetupStandardJobs.self
|
|
], // Initial DB Creation
|
|
[
|
|
_003_YDBToGRDBMigration.self
|
|
], // YDB to GRDB Migration
|
|
[
|
|
_004_FlagMessageHashAsDeletedOrInvalid.self
|
|
], // Legacy DB removal
|
|
[], // Add job priorities
|
|
[], // Fix thread FTS
|
|
[
|
|
_005_AddSnodeReveivedMessageInfoPrimaryKey.self,
|
|
_006_SnodePoolLibQuicSupport.self
|
|
]
|
|
]
|
|
)
|
|
}
|
|
|
|
public static func configure() {
|
|
// Configure the job executors
|
|
JobRunner.setExecutor(GetSnodePoolJob.self, for: .getSnodePool)
|
|
JobRunner.setExecutor(BuildPathsJob.self, for: .buildPaths)
|
|
}
|
|
}
|