django-dbbackup
django-dbbackup copied to clipboard
Management commands to help backup and restore your project database and media files
# Bug Report ## Describe the bug When I try to restore the database the command return `CommandError: There's no backup file available.` whereas the backup file was listed when...
Adding @rgaiacs changes about restoring to sqlite db with newlines # Bug fix ## Description This change fix a pb when restoring fields that contains newlines.
I have started adding the ability to have a "fallback" (i.e. 2nd restore location) for backups. I still need to finish testing, but I wanted to get feedback before I...
… restoration. #enhancement ## Description Add a parameter to the command dbrestore. This option allows to set if the connector sends or not a clean parameter in the restore command....
Closes #384. Instead of building a command-line that might be subject to a row of issues (the command-line used before carried the database password in plaintext, making it available to...
Signals could be a good way to let developers interact with DBBackup's actions. I imagine the following: - pre_dbbackup & post_dbbackup - pre_dbrestore & post_dbrestore - pre_mediabackup & post_mediabackup -...
For make DBBackup more modular, I think backup and restore for media and database should be in high level function. It will allow developer to use it in different ways,...
1. Backed up the database 2. Restored the database from the backup => Works fine :white_check_mark: 1. Back up the database 2. Wipe out the database 3. Do the initial...
Hi, on my system (Debian Jessie, Postgre 9.4, Django 1.10, Python 3.4) dbrestore fails with`ERROR: must be owner of extension plpgsql`. This is after applying the changes in #212 to...