Fixes: 1) Add missing import for `ImproperlyConfigured` in `base.py`. Extra: 1) Refactor and relocate DB backup configuration from `dbbackup.py` to `base.py`.
7 lines
166 B
Python
7 lines
166 B
Python
DBBACKUP_CONNECTORS = {
|
|
"default": {
|
|
"SINGLE_TRANSACTION": False,
|
|
"IF_EXISTS": True,
|
|
"RESTORE_SUFFIX": "--set ON_ERROR_STOP=off",
|
|
}
|
|
}
|