mirror of https://github.com/TriliumNext/Notes
recent notes are now keyed by note tree id which simplifies things
parent
41f089b3f4
commit
15faefe8a3
@ -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';
|
||||
Loading…
Reference in New Issue