mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 09:45:03 +08:00
15 lines
489 B
MySQL
15 lines
489 B
MySQL
|
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);
|