Merge branch 'release-v1.20.0' into develop

This commit is contained in:
Richard van der Hoff 2020-09-06 23:32:28 +01:00
commit 77b4711bc2
8 changed files with 25 additions and 39 deletions

View file

@ -19,8 +19,8 @@
-- Add columns to event_push_actions and event_push_actions_staging to track unread
-- messages and calculate unread counts.
ALTER TABLE event_push_actions_staging ADD COLUMN unread SMALLINT NOT NULL DEFAULT 0;
ALTER TABLE event_push_actions ADD COLUMN unread SMALLINT NOT NULL DEFAULT 0;
ALTER TABLE event_push_actions_staging ADD COLUMN unread SMALLINT;
ALTER TABLE event_push_actions ADD COLUMN unread SMALLINT;
-- Add column to event_push_summary
ALTER TABLE event_push_summary ADD COLUMN unread_count BIGINT NOT NULL DEFAULT 0;
ALTER TABLE event_push_summary ADD COLUMN unread_count BIGINT;