mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 02:45:54 +01:00
13 lines
432 B
MySQL
13 lines
432 B
MySQL
|
|
-- case based on isDeleted is needed, otherwise 2 branches (1 deleted, 1 not) might get the same ID
|
||
|
|
UPDATE entity_changes SET entityId = (
|
||
|
|
SELECT
|
||
|
|
CASE isDeleted
|
||
|
|
WHEN 0 THEN parentNoteId || '_' || noteId
|
||
|
|
WHEN 1 THEN branchId
|
||
|
|
END
|
||
|
|
FROM branches WHERE branchId = entityId
|
||
|
|
)
|
||
|
|
WHERE entityName = 'branches';
|
||
|
|
|
||
|
|
UPDATE branches SET branchId = parentNoteId || '_' || noteId WHERE isDeleted = 0;
|