added checksum to note_attachment

This commit is contained in:
zadam
2023-01-24 16:55:48 +01:00
parent a7b103e07a
commit 3c57f08ef7
3 changed files with 18 additions and 6 deletions

View File

@@ -5,6 +5,7 @@ CREATE TABLE IF NOT EXISTS "note_attachments"
name TEXT not null,
mime TEXT not null,
isProtected INT not null DEFAULT 0,
contentCheckSum TEXT not null,
utcDateModified TEXT not null,
isDeleted INT not null,
`deleteId` TEXT DEFAULT NULL);