From bbbad6776468258355dcb9d821495f00cea1134c Mon Sep 17 00:00:00 2001 From: zadam Date: Tue, 10 May 2022 23:42:28 +0200 Subject: [PATCH] remove recent notes from entity changes migration, #2842 --- db/migrations/0195__remove_recent_notes_from_entity_changes.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 db/migrations/0195__remove_recent_notes_from_entity_changes.sql diff --git a/db/migrations/0195__remove_recent_notes_from_entity_changes.sql b/db/migrations/0195__remove_recent_notes_from_entity_changes.sql new file mode 100644 index 000000000..834db7fe9 --- /dev/null +++ b/db/migrations/0195__remove_recent_notes_from_entity_changes.sql @@ -0,0 +1,2 @@ +-- removing potential remnants of recent notes in entity changes, see https://github.com/zadam/trilium/issues/2842 +DELETE FROM entity_changes WHERE entityName = 'recent_notes';