mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
15 lines
No EOL
489 B
SQL
15 lines
No EOL
489 B
SQL
CREATE TABLE relations
|
|
(
|
|
relationId TEXT not null primary key,
|
|
sourceNoteId TEXT not null,
|
|
name TEXT not null,
|
|
targetNoteId TEXT not null,
|
|
position INT default 0 not null,
|
|
dateCreated TEXT not null,
|
|
dateModified TEXT not null,
|
|
isDeleted INT not null
|
|
, hash TEXT DEFAULT "" NOT NULL);
|
|
CREATE INDEX IDX_relation_sourceNoteId
|
|
on relations (sourceNoteId);
|
|
CREATE INDEX IDX_relation_targetNoteId
|
|
on relations (targetNoteId); |