mirror of https://github.com/TriliumNext/Notes
shortening of noteIds to 12 characters
parent
a76e82e9a2
commit
966ac6f620
@ -0,0 +1,6 @@
|
||||
UPDATE notes SET note_id = substr(note_id, 0, 13);
|
||||
UPDATE notes_tree SET note_id = substr(note_id, 0, 13), note_pid = substr(note_pid, 0, 13);
|
||||
UPDATE notes_history SET note_id = substr(note_id, 0, 13);
|
||||
UPDATE audit_log SET note_id = substr(note_id, 0, 13);
|
||||
UPDATE links SET note_id = substr(note_id, 0, 13);
|
||||
UPDATE images SET note_id = substr(note_id, 0, 13);
|
||||
Loading…
Reference in New Issue