mirror of https://github.com/TriliumNext/Notes
blob WIP
parent
dc97400dbf
commit
eee05a4d01
@ -1,16 +1,15 @@
|
|||||||
CREATE TABLE IF NOT EXISTS "note_attachments"
|
CREATE TABLE IF NOT EXISTS "note_attachments"
|
||||||
(
|
(
|
||||||
noteAttachmentId TEXT not null primary key,
|
noteAttachmentId TEXT not null primary key,
|
||||||
noteId TEXT not null,
|
parentId TEXT not null,
|
||||||
name TEXT not null,
|
role TEXT not null,
|
||||||
mime TEXT not null,
|
mime TEXT not null,
|
||||||
|
title TEXT not null,
|
||||||
isProtected INT not null DEFAULT 0,
|
isProtected INT not null DEFAULT 0,
|
||||||
blobId TEXT not null,
|
blobId TEXT not null,
|
||||||
utcDateModified TEXT not null,
|
utcDateModified TEXT not null,
|
||||||
isDeleted INT not null,
|
isDeleted INT not null,
|
||||||
`deleteId` TEXT DEFAULT NULL);
|
deleteId TEXT DEFAULT NULL);
|
||||||
|
|
||||||
CREATE INDEX IDX_note_attachments_name
|
CREATE UNIQUE INDEX IDX_note_attachments_parentId_role
|
||||||
on note_attachments (name);
|
on note_attachments (parentId, role);
|
||||||
CREATE UNIQUE INDEX IDX_note_attachments_noteId_name
|
|
||||||
on note_attachments (noteId, name);
|
|
||||||
|
|||||||
Loading…
Reference in New Issue