Smart reversion of Django migrations based on Git diff
Project description
If you are in a complex Django project, sometimes you will find yourself switching between multiple branches, some of which can add a number of database migrations. Before switching back to master you will have to unapply all migrations that are specific to the current branch. In order to unapply these, you will have to enter the migration that comes right before the first migration of the current branch. If two or more apps are involved, you will have to do that for each one of them.
If you leave your migration names unchanged, inferring the name of the right migration to target is not too difficult, because they are prefixed by default with a sequential number. Django also helps, being smart enough to let you use an unambiguous prefix of any migration name. Add a merge migration and the numbers will no longer be so obvious. Or if you have renamed your migration files to drop the sequential numbers you will have to do the search manually.
With django-unmigrate you can speed up the process.
Usage
Add django_unmigrate to your INSTALLED_APPS. This is required to make the unmigrate management command available.
Then, while standing on any branch, you will be able to use:
python manage.py unmigrate master
Or if it’s going to be master anyways, this will suffice:
python manage.py unmigrate
And that’s it!
A little deeper
Ok, you can do more than that.
Do you need to unapply your migrations from the same branch, a few commits behind? Here’s how:
python manage.py unmigrate HEAD~12 python manage.py unmigrate b13553d python manage.py unmigrate v1.33.7
Or if you only want to see the target migrations, do:
python manage.py unmigrate --dry-run
Finally, if you just want to play with the app with no actual modifications in the database, go ahead and unapply your migrations with fake. Just don’t forget to apply them again at the end:
python manage.py unmigrate --fake python manage.py migrate --fake
No more master
This package (still) uses master as the name of the default branch. If that is no longer the case for your repositories, you can define MAIN_BRANCH in your Django settings.
Do you see potential?
This app started as a quick-n-dirty hack to speed up my team’s development in multiple Django projects. However, with your help, it can become more than that:
Do you find the migration diff detection code hackish? We agree, help us make it more robust and aligned with the Django internals.
Do you use mercurial instead of git? Help us with a mercurial adapter. Maybe another VCS? Please, help us as well!
Do you think this app can be used as a tool to generate automatic rollback scripts for automatic Django deployments? We’re thinking the same. Help us shape the logic and give us a hand with the code!
Is there any other direction where you see potential here? We’re open to hear your ideas.
Contributing
Join the discussion at https://gitter.im/django-unmigrate/community.
PRs are welcome! If you have questions or comments, please use the link above.
To run the test suite run make or make coverage. The tests for this project live inside a small django project called dunm_sandbox. Beware! This package uses Git to function, therefore, the tests expect a number of commit hashes inside this repository to be present and remain stable in order to function. See this meta file for further details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-unmigrate-0.2.0.tar.gz
.
File metadata
- Download URL: django-unmigrate-0.2.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6d837d0bbb793c566c53368bd6a2c67a8c9a74e190ad8bd0869257a1bf7c8b67 |
|
MD5 | b0ee676f42dbae3c4e294585dd25e7ef |
|
BLAKE2b-256 | a646786bfb83dedd3ee00dfb0dd091d7789169bf1f257dfb737e18410c6a1d66 |
File details
Details for the file django_unmigrate-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: django_unmigrate-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.0.0 requests-toolbelt/0.9.1 tqdm/4.57.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb9a2b04e96a3bbc24d02eba7403a962350fd3fb538b20931a27fcfdf5155266 |
|
MD5 | 2d5e7091d9c8a527bdc7dd91efa88bfe |
|
BLAKE2b-256 | ed823bf0d13aa22d538f986aa5b9d03820788d36a0ea123415ea1310f1c76ceb |