mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
recent notes are now keyed by note tree id which simplifies things
This commit is contained in:
10
migrations/0048__add_note_tree_id_to_recent_notes.sql
Normal file
10
migrations/0048__add_note_tree_id_to_recent_notes.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
DROP TABLE recent_notes;
|
||||
|
||||
CREATE TABLE `recent_notes` (
|
||||
'note_tree_id'TEXT NOT NULL PRIMARY KEY,
|
||||
`note_path` TEXT NOT NULL,
|
||||
`date_accessed` INTEGER NOT NULL ,
|
||||
is_deleted INT
|
||||
);
|
||||
|
||||
DELETE FROM sync WHERE entity_name = 'recent_notes';
|
||||
Reference in New Issue
Block a user