Skip to main content

Smart reversion of Django migrations based on Git diff

Project description

Packaging: poetry Code style: black Build status Code coverage PyPi version Downloads

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

Contributing

  • Join the discussion at https://github.com/lorinkoz/django-unmigrate/discussions.

  • 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

django-unmigrate-0.3.1.tar.gz (6.4 kB view details)

Uploaded Source

Built Distribution

django_unmigrate-0.3.1-py3-none-any.whl (6.8 kB view details)

Uploaded Python 3

File details

Details for the file django-unmigrate-0.3.1.tar.gz.

File metadata

  • Download URL: django-unmigrate-0.3.1.tar.gz
  • Upload date:
  • Size: 6.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for django-unmigrate-0.3.1.tar.gz
Algorithm Hash digest
SHA256 4ec10563a0dc51c43870d03da89b5d8312e5d6edc2943d2353db9ed0e843c955
MD5 df3e77b1676f508c16b693e731af6ed7
BLAKE2b-256 92f7b00c7611ca4747aeb639a3c635f495c7c7262ddc7e5ec823e6679ea2e3ca

See more details on using hashes here.

File details

Details for the file django_unmigrate-0.3.1-py3-none-any.whl.

File metadata

  • Download URL: django_unmigrate-0.3.1-py3-none-any.whl
  • Upload date:
  • Size: 6.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.7

File hashes

Hashes for django_unmigrate-0.3.1-py3-none-any.whl
Algorithm Hash digest
SHA256 996542a7d8d984eb40846fd53346a8546c92f161b17f61b73661e6a5b56e3bd2
MD5 87954951d44f1975dfad6a0b8f0df30f
BLAKE2b-256 0cab67f92f459c2850f7a4689e5720dc0aed1042a14b5b24f1cf692ff1067bc0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page