1
0
mirror of https://github.com/zadam/trilium.git synced 2025-03-01 14:22:32 +01: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
);