summary refs log tree commit diff
path: root/database-prepare-for-0.0.1.sh
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2014-08-22 12:18:05 +0100
committerErik Johnston <erik@matrix.org>2014-08-22 12:18:05 +0100
commit5494815c701f806d012a60d5117519e4d2ef1b39 (patch)
treead0e826973b7676998fce5f62f0710487253d40a /database-prepare-for-0.0.1.sh
parentBump versions to 0.0.1 (diff)
downloadsynapse-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-xdatabase-prepare-for-0.0.1.sh19
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"