Welcome to Django Migration Snapshots’s documentation!¶
Contents:
Django Migration Snapshots¶
Capture snapshots of your django project’s migration history. These snapshots are represented as a directed graph using pygraphviz
in both textual and graphical formats.
Documentation¶
The full documentation is at https://django-migration-snapshots.readthedocs.io.
Quickstart¶
Install Django Migration Snapshots:
pip install django-migration-snapshots
Add it to your INSTALLED_APPS
:
INSTALLED_APPS = (
...
"migration_snapshots",
...
)
1) Execute management command to create snapshot¶
# creates snapshot of entire migration history
python manage.py create_snapshot
# filter migrations before applied date (YYYY-MM-DD)
python manage.py create_snapshot --date="2022-10-15"
2) Create object programmatically or from the admin panel¶
MigrationSnapshot.objects.create(output_format="pdf")
3) Automatically create migration snapshots with the post_migrate signal¶
from django.apps import AppConfig
from django.db.models.signals import post_migrate
def my_snapshot_callback(sender, **kwargs):
# Create migration snapshot
MigrationSnapshot.objects.create(output_format="pdf")
class MyAppConfig(AppConfig):
...
def ready(self):
# send signal only once after all migrations execute
post_migrate.connect(my_snapshot_callback, sender=self)
Text Snapshot¶
digraph {
"admin/0001_initial" -> "auth/0001_initial"
"admin/0001_initial" -> "contenttypes/0001_initial"
"admin/0002_logentry_remove_auto_add" -> "admin/0001_initial"
"admin/0003_logentry_add_action_flag_choices" -> "admin/0002_logentry_remove_auto_add"
"auth/0001_initial" -> "contenttypes/0001_initial"
"auth/0002_alter_permission_name_max_length" -> "auth/0001_initial"
...
}
Graphical Snapshot¶

Features¶
MigrationSnapshot
data modelSupported output formats
BMP, CGIMAGE, DOT_CANON, DOT, GV, XDOT, XDOT12, XDOT14, EPS, EXR, FIG, GD, GIF, GTK, ICO, CMAP, ISMAP, IMAP, CMAPX, IMAGE_NP, CMAPX_NP, JPG, JPEG, JPE, JPEG_2000, JSON, JSON0, DOT_JSON, XDOT_JSON, PDF, PIC, PICT, APPLE_PICT, PLAIN_TEXT, PLAIN_EXT, PNG, POV_RAY, PS_PDF, PSD, SGI, SVG, SVGZ, TGA, TIF, TIFF, TK, VML, VMLZ, VRML, WBMP, WEBP, XLIB, X11
View migration history based on the miigration’s applied timestamp
TODO’s¶
Additional test coverage
Setup tox
Additional filters in management command (ie; per app, per model, etc.)
More documentation
Local Development¶
make install
make test
Deployment¶
make build
make deploy
License¶
This project is provided under the BSD License.
Installation¶
At the command line:
$ easy_install django-migration-snapshots
Or, if you have virtualenvwrapper installed:
$ mkvirtualenv django-migration-snapshots
$ pip install django-migration-snapshots
Usage¶
To use Django Migration Snapshots in a project, add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'migration_snapshots',
...
)
Add Django Migration Snapshots’s URL patterns:
Contributing¶
Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.
You can contribute in many ways:
Types of Contributions¶
Report Bugs¶
Report bugs at https://github.com/Lenders-Cooperative/django-migration-snapshots/issues.
If you are reporting a bug, please include:
Your operating system name and version.
Any details about your local setup that might be helpful in troubleshooting.
Detailed steps to reproduce the bug.
Fix Bugs¶
Look through the GitHub issues for bugs. Anything tagged with “bug” is open to whoever wants to implement it.
Implement Features¶
Look through the GitHub issues for features. Anything tagged with “feature” is open to whoever wants to implement it.
Write Documentation¶
Django Migration Snapshots could always use more documentation, whether as part of the official Django Migration Snapshots docs, in docstrings, or even on the web in blog posts, articles, and such.
Submit Feedback¶
The best way to send feedback is to file an issue at https://github.com/Lenders-Cooperative/django-migration-snapshots/issues.
If you are proposing a feature:
Explain in detail how it would work.
Keep the scope as narrow as possible, to make it easier to implement.
Remember that this is a volunteer-driven project, and that contributions are welcome :)
Get Started!¶
Ready to contribute? Here’s how to set up django-migration-snapshots for local development.
Fork the django-migration-snapshots repo on GitHub.
Clone your fork locally:
$ git clone git@github.com:your_name_here/django-migration-snapshots.git
Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:
$ mkvirtualenv django-migration-snapshots $ cd django-migration-snapshots/ $ python setup.py develop
Create a branch for local development:
$ git checkout -b name-of-your-bugfix-or-feature
Now you can make your changes locally.
When you’re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox:
$ flake8 migration_snapshots tests $ python setup.py test $ tox
To get flake8 and tox, just pip install them into your virtualenv.
Commit your changes and push your branch to GitHub:
$ git add . $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature
Submit a pull request through the GitHub website.
Pull Request Guidelines¶
Before you submit a pull request, check that it meets these guidelines:
The pull request should include tests.
If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst.