Migrate to new SVR2 enclave.

This commit is contained in:
Greyson Parrelli
2025-07-24 12:11:41 -04:00
parent a19cdc923c
commit a249fbb38f
3 changed files with 17 additions and 7 deletions

View File

@@ -184,9 +184,10 @@ public class ApplicationMigrations {
static final int E164_FORMATTING_2 = 140;
static final int E164_FORMATTING_3 = 141;
static final int STORAGE_LOCAL_UNKNOWNS_FIX_2 = 142;
static final int SVR2_ENCLAVE_UPDATE_4 = 143;
}
public static final int CURRENT_VERSION = 142;
public static final int CURRENT_VERSION = 143;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -849,6 +850,10 @@ public class ApplicationMigrations {
jobs.put(Version.STORAGE_LOCAL_UNKNOWNS_FIX_2, new StorageFixLocalUnknownMigrationJob());
}
if (lastSeenVersion < Version.SVR2_ENCLAVE_UPDATE_4) {
jobs.put(Version.SVR2_ENCLAVE_UPDATE_4, new Svr2MirrorMigrationJob());
}
return jobs;
}