diff options
author | Erik Johnston <erik@matrix.org> | 2014-11-19 18:00:57 +0000 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2014-11-19 18:00:57 +0000 |
commit | 5b46ce579ba9a198546ff9e19f743eb91a126422 (patch) | |
tree | 67a0454a06167f9616d5d8115edf2aacfc877521 /database-prepare-for-0.5.0.sh | |
parent | Initialise UserPresenceCache instances to always contain a 'presence' key (diff) | |
download | synapse-5b46ce579ba9a198546ff9e19f743eb91a126422.tar.xz |
Bump version, changelog and upgrade.rst
Diffstat (limited to 'database-prepare-for-0.5.0.sh')
-rwxr-xr-x | database-prepare-for-0.5.0.sh | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/database-prepare-for-0.5.0.sh b/database-prepare-for-0.5.0.sh new file mode 100755 index 0000000000..e824cb583e --- /dev/null +++ b/database-prepare-for-0.5.0.sh @@ -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" |