Migration to normalize all attachments

This commit is contained in:
trevor-signal
2025-05-29 14:50:14 -04:00
committed by GitHub
parent a2c50b1895
commit a2f0f4c8a4
3 changed files with 38 additions and 1 deletions

View File

@@ -690,6 +690,10 @@ const toVersion14 = _withSchemaVersion({
}
),
});
const toVersion15 = _withSchemaVersion({
schemaVersion: 15,
upgrade: noopUpgrade,
});
const VERSIONS = [
toVersion0,
@@ -707,6 +711,7 @@ const VERSIONS = [
toVersion12,
toVersion13,
toVersion14,
toVersion15,
];
export const CURRENT_SCHEMA_VERSION = VERSIONS.length - 1;