mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
12 lines
No EOL
262 B
SQL
12 lines
No EOL
262 B
SQL
drop table recent_notes;
|
|
|
|
create table recent_notes
|
|
(
|
|
noteId TEXT not null primary key,
|
|
notePath TEXT not null,
|
|
hash TEXT default "" not null,
|
|
utcDateCreated TEXT not null,
|
|
isDeleted INT
|
|
);
|
|
|
|
delete from sync where entityName = 'recent_notes'; |