Django reset migrations with `zeromigrations` command with backup feature
Project description
As the project grows up, the number of migration files increases over time. As a result, running them can consume a lot of time, specifically when you are running your tests.
zeromigrations is a command to reset migration files. It basically runs 4 commands:
migrate --fake {app_name} zero for each app.
Remove old migration files, as new migrations is going to be generated.
makemigrations to generate initial migration file.
migrate --fake-initial to fake generated initial files.
But besides that, this command can make a backup to restore in case of any failure.
Note that migrate --fake command only runs for your own apps and django apps like contenttype and third-party apps are excluded.
Installation
First install the package:
pip3 install django-zeromigrations
Then add it to your INSTALLED_APPS:
INSTALLED_APPS = [
...
"zero_migrations"
]
Usage
First, run the command:
python manage.py zeromigrations --backup-path=<YOUR_PATH>
I suggest to make a backups from both your migrations and django_migrations table (just in case).
1- make backup
2- restore last backup
3- just proceed
If you choose 1- make backup, it would make a backup then zero migrations.
If you choose 2- restore last backup, it tries to restore the latest backup that can be found. If not backup found, it would raise an error.
If you choose 3- just proceed, it assumes that you already have your own backup and start setting migrations zero.
Options
--backup-path: The absolute path of the dir that you want to store backups in. It should have –backup-path=<PATH> format. The default path is inside of zeromigrations app dir.
--use-fake-zero: By default, deleting migrations records from DB happens directly using ORM. With this flag, you can set to use python3 manage.py migrate app –fake zero (note that it has performance issue).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file django_zeromigrations-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: django_zeromigrations-0.3.2-py3-none-any.whl
- Upload date:
- Size: 11.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70bb353312909a120abd06b5ad71b9f36c8f89f954b11a073ff9f98785e8ec18 |
|
MD5 | 1a7d9213b0ad7dde593ac2dd72c8eb52 |
|
BLAKE2b-256 | 9eeaf8653df4474e4e5773ccd090edec9377f916244023355cf25438ea20bb85 |