summary refs log tree commit diff
diff options
context:
space:
mode:
authorJan Christian Grünhage <jan.christian@gruenhage.xyz>2018-09-12 10:38:02 +0200
committerGitHub <noreply@github.com>2018-09-12 10:38:02 +0200
commitb7816b46f4a7251518889828b7bc7ec43e54c093 (patch)
tree7e5314394e80beea151ab197bab4bef145a6507a
parentSpeed up lazy loading (#3827) (diff)
downloadsynapse-b7816b46f4a7251518889828b7bc7ec43e54c093.tar.xz
add users_who_share_rooms to the nuke script
-rwxr-xr-xscripts-dev/nuke-room-from-db.sh1
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