diff options
author | Erik Johnston <erik@matrix.org> | 2014-08-22 12:18:05 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-08-22 12:18:05 +0100 |
commit | 5494815c701f806d012a60d5117519e4d2ef1b39 (patch) | |
tree | ad0e826973b7676998fce5f62f0710487253d40a /database-prepare-for-0.0.1.sh | |
parent | Bump versions to 0.0.1 (diff) | |
download | synapse-5494815c701f806d012a60d5117519e4d2ef1b39.tar.xz |
Add database-prepare-for-0.0.1.sh that should be run before starting a v0.0.1 homeserver.
Diffstat (limited to 'database-prepare-for-0.0.1.sh')
-rwxr-xr-x | database-prepare-for-0.0.1.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/database-prepare-for-0.0.1.sh b/database-prepare-for-0.0.1.sh new file mode 100755 index 0000000000..17c0c5f34e --- /dev/null +++ b/database-prepare-for-0.0.1.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +# This is will prepare a synapse database for running with v0.0.1 of synapse. +# It will store all the user information, but will *delete* all messages and +# room data. + +cp "$1" "$1.bak" + +DUMP=$(sqlite3 "$1" << 'EOF' +.dump users +.dump access_tokens +.dump presence +.dump profiles +EOF +) + +rm "$1" + +sqlite3 "$1" <<< "$DUMP" |