Upgrade from 2.5.x¶
Settings¶
The following settings are now useless, you can remove them:
DBBACKUP_BACKUP_ENVIRONMENT: Must be set inCONNECTORS['dbname']['env']DBBACKUP_RESTORE_ENVIRONMENT: Same thanBACKUP_ENVIRONMENTDBBACKUP_FORCE_ENGINEDBBACKUP_READ_FILEDBBACKUP_WRITE_FILEDBBACKUP_BACKUP_DIRECTORY: Was used by Filesystem storage, uselocationparameterDBBACKUP_SQLITE_BACKUP_COMMANDS: Was used by SQLite database, useCONNECTORS’s parameters.DBBACKUP_SQLITE_RESTORE_COMMANDS: Same thanSQLITE_BACKUP_COMMANDSDBBACKUP_MYSQL_BACKUP_COMMANDS: Same thanSQLITE_BACKUP_COMMANDSbut for MySQLDBBACKUP_MYSQL_RESTORE_COMMANDS: Same thanMYSQL_BACKUP_COMMANDSDBBACKUP_POSTGRESQL_BACKUP_COMMANDSSame thanMYSQL_BACKUP_COMMANDSbut for PostgreSQLDBBACKUP_POSTGRESQL_RESTORE_COMMANDS: Same thanDBBACKUP_POSTGRESQL_BACKUP_COMMANDS: Was used for activate PostGIS, usePgDumpGisConnectorconnector for enable this optionDBBACKUP_POSTGRESQL_RESTORE_SINGLE_TRANSACTION: Must be set inCONNTECTORS['dbname']['single_transaction']DBBACKUP_BUILTIN_STORAGE
Commands¶
dbrestore¶
--backup-extension has been removed, DBBackup should automaticaly
know the appropriate file.
Listing from this command, --list, has been removed in favor of
listbackups command.
mediabackup¶
mediabackup’s --no-compress option has been replaced by --compress
for keep consistency with other commands.
Now this command can backup remote storage, not only filesystem’s
DBBACKUP_BACKUP_DIRECTORY.
mediarestore¶
You are now able to restore your media files backups. Unfortunately you’ll not be able to restore old backup files.
Database connector¶
We made a total refactoring of DBCommands system. It is now easier to use, configure and implement a custom one.
All database configuration for backups are defined in settings
DBBACKUP_CONNECTORS. By default, the DATABASES
parameters are used but can be overrided in this new constant.
This dictionnary stores configuration about how backups are made,
what is the path of backup command (/bin/mysqldump), add suffix or prefix
to the command line, environment variable, etc.
The system stay pretty simple and can detect alone how to backup your DB. If it can’t just submit us what is your Django DB Engine and we’ll try to fix it.
SQLite¶
Previously backup was made by copy the database file, now you have the choice between make a raw snaphot or make a real SQL dump. It can be useful to exclude tables or don’t overwrite data.
If you want to restore your old backups choose
dbbackup.db.sqlite.SqliteCPConnector.
Storage engine¶
All storage engines has been removed from DBBackup except the basic. Now this object will use Django storages as driver.
settings.DBBACKUP_STORAGE must now be a full path to a Django storage, for
example 'django.core.files.storage.FileSystemStorage'.
settings.DBBACKUP_STORAGE_OPTIONS hold its function of gather storage’s
options.
If you was using a removed storage backend, don’t worry, we ensure you’ll have a solution by test and write equivalent in Django-Storages.