mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 18:08:13 +08:00
7 lines
205 B
MySQL
7 lines
205 B
MySQL
|
ALTER TABLE notes_history ADD COLUMN note_history_id TEXT;
|
||
|
|
||
|
UPDATE notes_history SET note_history_id = id;
|
||
|
|
||
|
CREATE UNIQUE INDEX `IDX_note_history_note_history_id` ON `notes_history` (
|
||
|
`note_history_id`
|
||
|
);
|