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.
		
		
		
		
		
			
		
			
				
	
	
		
			32 lines
		
	
	
		
			1013 B
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			32 lines
		
	
	
		
			1013 B
		
	
	
	
		
			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_DropSnodeCache.self
 | 
						|
                ]
 | 
						|
            ]
 | 
						|
        )
 | 
						|
    }
 | 
						|
}
 |