mirror of
https://github.com/TriliumNext/Notes.git
synced 2026-04-21 11:18:31 -05:00
note history snapshots now have date from and date to
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user