diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-02-17 11:30:50 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2020-02-17 16:19:32 +0000 |
commit | d2455ec3aafe2b06174e0343799b30e12d08171d (patch) | |
tree | 38e5308b04fe667c32faaa683e8664f73ea8a6ee /synapse | |
parent | Move the warning at the top of the release changes (diff) | |
download | synapse-d2455ec3aafe2b06174e0343799b30e12d08171d.tar.xz |
wait for current_state_events_membership before delete_old_current_state_events (#6924)
Diffstat (limited to 'synapse')
-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'); |