diff --git a/db/migrations/0155__remove_unnecessary_indexes.sql b/db/migrations/0155__remove_unnecessary_indexes.sql new file mode 100644 index 000000000..44630a241 --- /dev/null +++ b/db/migrations/0155__remove_unnecessary_indexes.sql @@ -0,0 +1,2 @@ +DROP INDEX IF EXISTS IDX_attributes_name_index; +DROP INDEX IF EXISTS IDX_branches_noteId; \ No newline at end of file diff --git a/db/schema.sql b/db/schema.sql index 414123672..d58476055 100644 --- a/db/schema.sql +++ b/db/schema.sql @@ -47,8 +47,6 @@ CREATE INDEX `IDX_sync_utcSyncDate` ON `sync` ( ); CREATE INDEX IDX_attributes_name_value on attributes (name, value); -CREATE INDEX IDX_attributes_name_index - on attributes (name); CREATE INDEX IDX_attributes_noteId_index on attributes (noteId); CREATE INDEX IDX_attributes_value_index @@ -80,7 +78,6 @@ CREATE TABLE IF NOT EXISTS "branches" ( utcDateCreated TEXT NOT NULL, hash TEXT DEFAULT "" NOT NULL, PRIMARY KEY(`branchId`)); -CREATE INDEX `IDX_branches_noteId` ON `branches` (`noteId`); CREATE INDEX `IDX_branches_noteId_parentNoteId` ON `branches` (`noteId`,`parentNoteId`); CREATE INDEX IDX_branches_parentNoteId ON branches (parentNoteId); CREATE TABLE IF NOT EXISTS "note_revision_contents" (`noteRevisionId` TEXT NOT NULL PRIMARY KEY, diff --git a/src/services/app_info.js b/src/services/app_info.js index 2d7a953ef..b76144025 100644 --- a/src/services/app_info.js +++ b/src/services/app_info.js @@ -4,7 +4,7 @@ const build = require('./build'); const packageJson = require('../../package'); const {TRILIUM_DATA_DIR} = require('./data_dir'); -const APP_DB_VERSION = 154; +const APP_DB_VERSION = 155; const SYNC_VERSION = 12; const CLIPPER_PROTOCOL_VERSION = "1.0";