{% include 'header.html' %}

Backup & Restore

Create Backup

Create a new database backup. This will export the entire database to a SQL file.

Restore Backup

Restore the database from a backup file. Warning: This will replace all current data!

{% if backups %}
{% endif %}

Available Backups

{% if backups %}
{% for backup in backups %} {% endfor %}
Filename Size Created Actions
{{ backup.filename }} {{ (backup.size / 1024 / 1024)|round(2) }} MB {{ backup.created }}
{% else %}

No backups available. Create your first backup above.

{% endif %}