Re-run the e164 formatting application migration.

This commit is contained in:
Greyson Parrelli
2025-05-28 13:33:58 -04:00
parent 5bdf10b1bd
commit 13d7bc54d3
2 changed files with 7 additions and 1 deletions

View File

@@ -181,9 +181,10 @@ public class ApplicationMigrations {
static final int CHAT_FOLDER_STORAGE_SYNC = 137;
static final int SVR2_ENCLAVE_UPDATE_3 = 138;
static final int DUPLICATE_E164_FIX_3 = 139;
static final int E164_FORMATTING_2 = 140;
}
public static final int CURRENT_VERSION = 139;
public static final int CURRENT_VERSION = 140;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -834,6 +835,10 @@ public class ApplicationMigrations {
jobs.put(Version.DUPLICATE_E164_FIX_3, new DuplicateE164MigrationJob());
}
if (lastSeenVersion < Version.E164_FORMATTING_2) {
jobs.put(Version.E164_FORMATTING_2, new E164FormattingMigrationJob());
}
return jobs;
}