Add message editing feature.

This commit is contained in:
Clark
2023-04-14 16:29:26 -04:00
committed by Cody Henthorne
parent 4f06a0d27c
commit 07f6baf7c1
73 changed files with 2051 additions and 304 deletions

View File

@@ -125,9 +125,10 @@ public class ApplicationMigrations {
static final int DECRYPTIONS_DRAINED = 80;
static final int REBUILD_MESSAGE_FTS_INDEX_3 = 81;
static final int TO_FROM_RECIPIENTS = 82;
static final int REBUILD_MESSAGE_FTS_INDEX_4 = 83;
}
public static final int CURRENT_VERSION = 82;
public static final int CURRENT_VERSION = 83;
/**
* This *must* be called after the {@link JobManager} has been instantiated, but *before* the call
@@ -557,6 +558,10 @@ public class ApplicationMigrations {
jobs.put(Version.TO_FROM_RECIPIENTS, new DatabaseMigrationJob());
}
if (lastSeenVersion < Version.REBUILD_MESSAGE_FTS_INDEX_4) {
jobs.put(Version.REBUILD_MESSAGE_FTS_INDEX_4, new RebuildMessageSearchIndexMigrationJob());
}
return jobs;
}