From 986eace1befa4346f1af6a505c5e02332461dc23 Mon Sep 17 00:00:00 2001 From: azivner Date: Sun, 29 Jul 2018 11:47:46 +0200 Subject: [PATCH] schema update with relations --- db/schema.sql | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/db/schema.sql b/db/schema.sql index 176e0b687..b6a3a17f4 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -134,3 +134,18 @@ CREATE TABLE IF NOT EXISTS "options" hash TEXT default "" not null, dateCreated TEXT default '1970-01-01T00:00:00.000Z' not null ); +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);