1
0
mirror of https://github.com/zadam/trilium.git synced 2025-06-06 18:08:33 +02:00
trilium/db/migrations/0041__recent_notes_with_note_path.sql

7 lines
159 B
SQL

DROP TABLE recent_notes;
CREATE TABLE `recent_notes` (
`note_path` TEXT NOT NULL PRIMARY KEY,
`date_accessed` INTEGER NOT NULL ,
is_deleted INT
);