From 673375fe2d0df303e47bcd818df580d59ffc4dfa Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 6 May 2015 11:46:02 +0100 Subject: Acutally add scripts-dev/ --- scripts-dev/database-save.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 scripts-dev/database-save.sh (limited to 'scripts-dev/database-save.sh') diff --git a/scripts-dev/database-save.sh b/scripts-dev/database-save.sh new file mode 100755 index 0000000000..040c8a4943 --- /dev/null +++ b/scripts-dev/database-save.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# This script will write a dump file of local user state if you want to splat +# your entire server database and start again but preserve the identity of +# local users and their access tokens. +# +# To restore it, use +# +# $ sqlite3 homeserver.db < table-save.sql + +sqlite3 "$1" <<'EOF' >table-save.sql +.dump users +.dump access_tokens +.dump presence +.dump profiles +EOF -- cgit 1.4.1