Update schema definition

This commit is contained in:
Michelle Linington 2021-09-22 14:05:13 -07:00
parent 5b2dfbe8ad
commit 04c7d8eff4
2 changed files with 2 additions and 2 deletions

View File

@ -1238,7 +1238,7 @@ CREATE
IF NOT EXISTS "MessageDecryptDeduplication" (
"id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL
,"serviceTimestamp" INTEGER NOT NULL
,"encryptedEnvelopeData" BLOB NOT NULL
,"encryptedEnvelopeDataHash" BLOB NOT NULL
)
;

View File

@ -1453,7 +1453,7 @@ public class GRDBSchemaMigrator: NSObject {
.notNull()
table.column("serviceTimestamp", .integer)
.notNull()
table.column("encryptedEnvelopeData", .blob)
table.column("encryptedEnvelopeDataHash", .blob)
.notNull()
}