trilium/migrations/0041__recent_notes_with_note_path.sql

7 lines
159 B
MySQL
Raw Normal View History

2017-11-20 01:06:48 +08:00
DROP TABLE recent_notes;
CREATE TABLE `recent_notes` (
`note_path` TEXT NOT NULL PRIMARY KEY,
`date_accessed` INTEGER NOT NULL ,
is_deleted INT
);