Skip to content

Commit

Permalink
More elaborate example for db vacuuming
Browse files Browse the repository at this point in the history
  • Loading branch information
voipmeister committed Aug 31, 2024
1 parent ae6ecde commit 1852cfe
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/_docs/admin/administration.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,7 @@ SQLite database files become less performant over time and waste space. It is re

Example:
```bash
sqlite3 ./db/message.sqlite3 "vacuum;"
for dbfile in /path/to/enigma-bbs/db/*.sqlite3; do
sqlite3 ./db/message.sqlite3 "vacuum;"
done
```

0 comments on commit 1852cfe

Please sign in to comment.