Move scripts into scripts

This commit is contained in:
Mark Haines 2015-01-15 16:57:00 +00:00
parent 73315ce9de
commit f4ce61ed36
6 changed files with 2 additions and 2 deletions

View file

@ -0,0 +1,21 @@
#!/bin/bash
# This is will prepare a synapse database for running with v0.5.0 of synapse.
# It will store all the user information, but will *delete* all messages and
# room data.
set -e
cp "$1" "$1.bak"
DUMP=$(sqlite3 "$1" << 'EOF'
.dump users
.dump access_tokens
.dump presence
.dump profiles
EOF
)
rm "$1"
sqlite3 "$1" <<< "$DUMP"