Add missing column to sharedNotes_diff

This commit is contained in:
Gustavo Trott 2024-01-18 23:25:44 -03:00 committed by GitHub
parent 2f79618787
commit 535703b644
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1501,7 +1501,7 @@ create table "sharedNotes_rev" (
--create view "v_sharedNotes_rev" as select * from "sharedNotes_rev";
create view "v_sharedNotes_diff" as
select "meetingId", "sharedNotesExtId", "userId", "start", "end", "diff"
select "meetingId", "sharedNotesExtId", "userId", "start", "end", "diff", "rev"
from "sharedNotes_rev"
where "diff" is not null;