Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
synapse
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maunium
synapse
Commits
20746d81
Commit
20746d81
authored
8 years ago
by
Christian W. Zuckschwerdt
Browse files
Options
Downloads
Patches
Plain Diff
bring nuke-room script to current schema
Signed-off-by:
Christian W. Zuckschwerdt
<
christian@zuckschwerdt.org
>
parent
699be7d1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts-dev/nuke-room-from-db.sh
+33
-10
33 additions, 10 deletions
scripts-dev/nuke-room-from-db.sh
with
33 additions
and
10 deletions
scripts-dev/nuke-room-from-db.sh
+
33
−
10
View file @
20746d81
...
...
@@ -9,16 +9,39 @@
ROOMID
=
"
$1
"
sqlite3 homeserver.db
<<
EOF
DELETE FROM
context_depth WHERE context
= '
$ROOMID
';
DELETE FROM
current_state WHERE context
= '
$ROOMID
';
DELETE FROM
feedback
WHERE room_id = '
$ROOMID
';
DELETE FROM
messages
WHERE room_id = '
$ROOMID
';
DELETE FROM
pdu_back
ward_extremities WHERE
context
= '
$ROOMID
';
DELETE FROM
pdu_edge
s WHERE
context
= '
$ROOMID
';
DELETE FROM
pdu_forward_extremities WHERE context
= '
$ROOMID
';
DELETE FROM
pdu
s WHERE
context
= '
$ROOMID
';
DELETE FROM
room_data
WHERE room_id = '
$ROOMID
';
DELETE FROM
event_forward_extremities WHERE room_id
= '
$ROOMID
';
DELETE FROM
event_backward_extremities WHERE room_id
= '
$ROOMID
';
DELETE FROM
event_edges
WHERE room_id = '
$ROOMID
';
DELETE FROM
room_depth
WHERE room_id = '
$ROOMID
';
DELETE FROM
state_for
ward_extremities WHERE
room_id
= '
$ROOMID
';
DELETE FROM
event
s WHERE
room_id
= '
$ROOMID
';
DELETE FROM
event_json WHERE room_id
= '
$ROOMID
';
DELETE FROM
state_event
s WHERE
room_id
= '
$ROOMID
';
DELETE FROM
current_state_events
WHERE room_id = '
$ROOMID
';
DELETE FROM room_memberships WHERE room_id = '
$ROOMID
';
DELETE FROM feedback WHERE room_id = '
$ROOMID
';
DELETE FROM topics WHERE room_id = '
$ROOMID
';
DELETE FROM room_names WHERE room_id = '
$ROOMID
';
DELETE FROM rooms WHERE room_id = '
$ROOMID
';
DELETE FROM state_pdus WHERE context = '
$ROOMID
';
DELETE FROM room_hosts WHERE room_id = '
$ROOMID
';
DELETE FROM room_aliases WHERE room_id = '
$ROOMID
';
DELETE FROM state_groups WHERE room_id = '
$ROOMID
';
DELETE FROM state_groups_state WHERE room_id = '
$ROOMID
';
DELETE FROM receipts_graph WHERE room_id = '
$ROOMID
';
DELETE FROM receipts_linearized WHERE room_id = '
$ROOMID
';
DELETE FROM event_search_content WHERE c1room_id = '
$ROOMID
';
DELETE FROM guest_access WHERE room_id = '
$ROOMID
';
DELETE FROM history_visibility WHERE room_id = '
$ROOMID
';
DELETE FROM room_tags WHERE room_id = '
$ROOMID
';
DELETE FROM room_tags_revisions WHERE room_id = '
$ROOMID
';
DELETE FROM room_account_data WHERE room_id = '
$ROOMID
';
DELETE FROM event_push_actions WHERE room_id = '
$ROOMID
';
DELETE FROM local_invites WHERE room_id = '
$ROOMID
';
DELETE FROM pusher_throttle WHERE room_id = '
$ROOMID
';
DELETE FROM event_reports WHERE room_id = '
$ROOMID
';
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
';
VACUUM;
EOF
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment