mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-28 10:32:27 +08:00
7 lines
159 B
MySQL
7 lines
159 B
MySQL
![]() |
DROP TABLE recent_notes;
|
||
|
|
||
|
CREATE TABLE `recent_notes` (
|
||
|
`note_path` TEXT NOT NULL PRIMARY KEY,
|
||
|
`date_accessed` INTEGER NOT NULL ,
|
||
|
is_deleted INT
|
||
|
);
|