mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
8 lines
221 B
SQL
8 lines
221 B
SQL
UPDATE branches SET branchId = 'hidden' where branchId = (
|
|
SELECT branchId FROM branches
|
|
WHERE parentNoteId = 'root'
|
|
AND noteId = 'hidden'
|
|
AND isDeleted = 0
|
|
ORDER BY utcDateModified
|
|
LIMIT 1
|
|
);
|