mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
24 lines
802 B
SQL
24 lines
802 B
SQL
CREATE TABLE IF NOT EXISTS "attachments"
|
|
(
|
|
attachmentId TEXT not null primary key,
|
|
ownerId TEXT not null,
|
|
role TEXT not null,
|
|
mime TEXT not null,
|
|
title TEXT not null,
|
|
isProtected INT not null DEFAULT 0,
|
|
position INT default 0 not null,
|
|
blobId TEXT DEFAULT null,
|
|
dateModified TEXT NOT NULL,
|
|
utcDateModified TEXT not null,
|
|
utcDateScheduledForErasureSince TEXT DEFAULT NULL,
|
|
isDeleted INT not null,
|
|
deleteId TEXT DEFAULT NULL);
|
|
|
|
CREATE INDEX IDX_attachments_ownerId_role
|
|
on attachments (ownerId, role);
|
|
|
|
CREATE INDEX IDX_attachments_utcDateScheduledForErasureSince
|
|
on attachments (utcDateScheduledForErasureSince);
|
|
|
|
CREATE INDEX IF NOT EXISTS IDX_attachments_blobId on attachments (blobId);
|