/
Undeadguy
/
synapse
Обзор
Документация
Войти
/
Undeadguy
/
synapse
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
scripts-dev/database-save.sh
15 строк
362 B
Dirk Klimpel
Drop unused table `presence` (#14825)
13 янв 2023, 17:17
Не верифицирован
13 янв 2023, 17:17
8d5325e
Код
Авторство
О чём код?
#!/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 profiles EOF