diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-17 11:30:50 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-17 11:30:50 +0000 |
commit | 46fa66bbfd367b2c1fbdf585107cec75fa1bb193 (patch) | |
tree | c92baa43fbb6a43cbab177d7905371933c381606 /synapse/storage | |
parent | Add type hints to the spam check module (#6915) (diff) | |
download | synapse-46fa66bbfd367b2c1fbdf585107cec75fa1bb193.tar.xz |
wait for current_state_events_membership before delete_old_current_state_events (#6924)
Diffstat (limited to 'synapse/storage')
-rw-r--r-- | synapse/storage/data_stores/main/schema/delta/57/delete_old_current_state_events.sql | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/synapse/storage/data_stores/main/schema/delta/57/delete_old_current_state_events.sql b/synapse/storage/data_stores/main/schema/delta/57/delete_old_current_state_events.sql index a133d87a19..aec06c8261 100644 --- a/synapse/storage/data_stores/main/schema/delta/57/delete_old_current_state_events.sql +++ b/synapse/storage/data_stores/main/schema/delta/57/delete_old_current_state_events.sql @@ -15,5 +15,8 @@ -- Add background update to go and delete current state events for rooms the -- server is no longer in. -INSERT into background_updates (update_name, progress_json) - VALUES ('delete_old_current_state_events', '{}'); +-- +-- this relies on the 'membership' column of current_state_events, so make sure +-- that's populated first! +INSERT into background_updates (update_name, progress_json, depends_on) + VALUES ('delete_old_current_state_events', '{}', 'current_state_events_membership'); |