Backfill plaintext hashes for quotes.

This commit is contained in:
Greyson Parrelli
2025-12-16 14:22:31 -05:00
committed by jeffrey-signal
parent 9aa4797792
commit 2d17082a76

View File

@@ -190,9 +190,10 @@ public class ApplicationMigrations {
static final int QUOTE_THUMBNAIL_BACKFILL = 146;
static final int EMOJI_ENGLISH_SEARCH = 147;
static final int AEP_ROTATE_FIX = 148;
static final int ATTACHMENT_HASH_BACKFILL_2 = 149;
}
public static final int CURRENT_VERSION = 148;
public static final int CURRENT_VERSION = 149;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -879,6 +880,10 @@ public class ApplicationMigrations {
jobs.put(Version.AEP_ROTATE_FIX, new AepMigrationJob());
}
if (lastSeenVersion < Version.ATTACHMENT_HASH_BACKFILL_2) {
jobs.put(Version.ATTACHMENT_HASH_BACKFILL_2, new AttachmentHashBackfillMigrationJob());
}
return jobs;
}