diff options
author | Jan Christian Grünhage <jan.christian@gruenhage.xyz> | 2018-09-12 10:38:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-12 10:38:02 +0200 |
commit | b7816b46f4a7251518889828b7bc7ec43e54c093 (patch) | |
tree | 7e5314394e80beea151ab197bab4bef145a6507a | |
parent | Speed up lazy loading (#3827) (diff) | |
download | synapse-b7816b46f4a7251518889828b7bc7ec43e54c093.tar.xz |
add users_who_share_rooms to the nuke script
-rwxr-xr-x | scripts-dev/nuke-room-from-db.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts-dev/nuke-room-from-db.sh b/scripts-dev/nuke-room-from-db.sh index c62928afdb..a11a95cd48 100755 --- a/scripts-dev/nuke-room-from-db.sh +++ b/scripts-dev/nuke-room-from-db.sh @@ -53,5 +53,6 @@ DELETE FROM public_room_list_stream WHERE room_id = '$ROOMID'; DELETE FROM stream_ordering_to_exterm WHERE room_id = '$ROOMID'; DELETE FROM event_auth WHERE room_id = '$ROOMID'; DELETE FROM appservice_room_list WHERE room_id = '$ROOMID'; +DELETE FROM users_who_share_rooms WHERE room_id = '$ROOMID'; VACUUM; EOF |