mirror of https://github.com/TriliumNext/Notes
note history snapshots now have date from and date to
parent
11bbf9e633
commit
d1981eb6c3
@ -0,0 +1,3 @@
|
||||
CREATE TABLE notes_history_mig AS SELECT id, note_id, note_title, note_text, date_modified AS date_modified_from, date_modified AS date_modified_to FROM notes_history;
|
||||
DROP TABLE notes_history;
|
||||
ALTER TABLE notes_history_mig RENAME TO notes_history;
|
||||
@ -0,0 +1 @@
|
||||
ALTER TABLE notes_history ADD COLUMN encryption INTEGER DEFAULT 0
|
||||
Loading…
Reference in New Issue