Split system names into first / last.

This commit is contained in:
Alex Hart
2021-03-03 09:37:30 -04:00
committed by GitHub
parent dc9fceb8cf
commit fd9c420dc8
15 changed files with 458 additions and 157 deletions

View File

@@ -70,6 +70,7 @@ public class ApplicationMigrations {
static final int USER_NOTIFICATION = 25;
static final int DAY_BY_DAY_STICKERS = 26;
static final int BLOB_LOCATION = 27;
static final int SYSTEM_NAME_SPLIT = 28;
}
/**
@@ -296,6 +297,10 @@ public class ApplicationMigrations {
jobs.put(Version.BLOB_LOCATION, new BlobStorageLocationMigrationJob());
}
if (lastSeenVersion < Version.SYSTEM_NAME_SPLIT) {
jobs.put(Version.SYSTEM_NAME_SPLIT, new DirectoryRefreshMigrationJob());
}
return jobs;
}