Detect backward incompatible migrations for your django project
Project description
Django migration linter
Detect backward incompatible migrations for your Django project. It will save you time by making sure migrations will not break with a older codebase.
Quick installation
pip install django-migration-linter
And add the migration linter your INSTALLED_APPS
:
INSTALLED_APPS = [
...,
"django_migration_linter",
...,
]
Usage example
$ python manage.py lintmigrations
(app_add_not_null_column, 0001_create_table)... OK
(app_add_not_null_column, 0002_add_new_not_null_field)... ERR
NOT NULL constraint on columns
(app_drop_table, 0001_initial)... OK
(app_drop_table, 0002_delete_a)... ERR
DROPPING table
(app_ignore_migration, 0001_initial)... OK
(app_ignore_migration, 0002_ignore_migration)... IGNORE
(app_rename_table, 0001_initial)... OK
(app_rename_table, 0002_auto_20190414_1500)... ERR
RENAMING tables
*** Summary ***
Valid migrations: 4/8
Erroneous migrations: 3/8
Migrations with warnings: 0/8
Ignored migrations: 1/8
The linter analysed all migrations from the Django project. It found 3 migrations that are doing backward incompatible operations and 1 that is explicitly ignored. The list of incompatibilities that the linter analyses can be found at docs/incompatibilities.md.
More advanced usages of the linter and options can be found at docs/usage.md.
Integration
One can either integrate the linter in the CI and the lintmigrations
command, or detect incompatibilities during generation with
$ python manage.py makemigrations --lint
Migrations for 'app_correct':
tests/test_project/app_correct/migrations/0003_a_column.py
- Add field column to a
Linting for 'app_correct':
(app_correct, 0003_a_column)... ERR
NOT NULL constraint on columns
The migration linter detected that this migration is not be backward compatible.
- If you keep the migration, you will want to fix the issue or ignore the migration.
- By default, the newly created migration file will be deleted.
Do you want to keep the migration? [y/N]
[...]
Deleted tests/test_project/app_correct/migrations/0003_a_column.py
The linter found that the newly created migration is not backward compatible and deletes the files.
This behaviour can be the default of the makemigrations
command through the MIGRATION_LINTER_OVERRIDE_MAKEMIGRATIONS
Django settings.
Find out more about the makemigrations command at docs/makemigrations.md.
More information
Please find more documentation generally in the docs/ folder.
Some implementation details can found in the ./docs/internals/ folder.
Blog post
Keeping Django database migrations backward compatible
License
django-migration-linter is released under the Apache 2.0 License.
Maintained by David Wobrock
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 Distribution
Built Distribution
File details
Details for the file django-migration-linter-2.4.0.tar.gz
.
File metadata
- Download URL: django-migration-linter-2.4.0.tar.gz
- Upload date:
- Size: 32.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 445c17d87c1245f018b4855bef31232f3a4e0e707e473cc1c1947402c3ea2b6e |
|
MD5 | 340e6d9937b8abd836b65f4c07a0ab77 |
|
BLAKE2b-256 | ee6450d80ce028f2c606c09630eaa7b91584f34ddba2c924a798bd33ebec1f2f |
File details
Details for the file django_migration_linter-2.4.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_migration_linter-2.4.0-py2.py3-none-any.whl
- Upload date:
- Size: 88.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40f3db9e6f1e88047f6baaa801dc4daccccb370bab1102e51a82b41b2e349956 |
|
MD5 | d8a7e2cd704e66d92d941a58c840aeb6 |
|
BLAKE2b-256 | 6fd0a843196ce2359ee915738b53f22c227d5c0c7cb4621dded651a8b5dfee1e |