Skip to main content

Detect backward incompatible migrations for your django project

Project description

Detect backward incompatible migrations for your django project. It will save you time by making sure migrations will not break anything.

https://travis-ci.org/3YOURMIND/django-migration-linter.svg?branch=master https://img.shields.io/pypi/v/django-migration-linter.svg https://img.shields.io/github/license/3yourmind/django-migration-linter.svg https://img.shields.io/badge/PR-welcome-green.svg https://img.shields.io/badge/3YOURMIND-Hiring-brightgreen.svg https://img.shields.io/github/stars/3YOURMIND/django-migration-linter.svg?style=social&label=Stars

Installation

pip install django-migration-linter

Usage

django-migration-linter DJANGO_PROJECT_FOLDER [GIT_COMMIT_ID] [--ignore-name-contains=IGNORE_NAME_CONTAINS] [--include-apps INCLUDE_APPS [INCLUDE_APPS ...] | --exclude-apps EXCLUDE_APPS [EXCLUDE_APPS ...]]

Parameter

Description

DJANGO_PROJECT_FOLDER

An absolute or relative path to the django project.

GIT_COMMIT_ID

If specified, only migrations since this commit will be taken into account. If not specified, all migrations will be linted.

--ignore-name-contains IGNORE_NAME_CONTAINS

Ignore migrations containing this name.

--ignore-name IGNORE_NAME [IGNORE_NAME ...]

Ignore migrations with exactly one of these names.

--include-apps INCLUDE_APPS [INCLUDE_APPS ...]

Check only migrations that are in the specified django apps.

--exclude-apps EXCLUDE_APPS [EXCLUDE_APPS ...]

Ignore migrations that are in the specified django apps.

--verbose or -v

Print more information during execution.

--database DATABASE

Specify the database for which to generate the SQL. Defaults to default.

--cache-path PATH

specify a directory that should be used to store cache-files in.

--no-cache

Don’t use a cache.

Examples

3YOURMIND is running the linter on every build getting pushed through CI. Checkout the examples/ folder to see how you could integrate the linter in your test suite.

Backward incompatible migrations

The linter analyses your migrations and checks the SQL for:

  • Added NOT NULL columns, which don’t have a DEFAULT value

  • Dropping columns

  • Renaming columns

  • Renaming tables

  • Altering columns (which can be backward compatible and eventually ignored)

Those are the most important and frequent backward incompatible migrations. We are happy to add more if you have some.

Ignoring migrations

You can also ignore migrations by adding this to your migrations:

import django_migration_linter as linter
# ...

    operations = [
        linter.IgnoreMigration(),
        # ...
    ]
# ...

Cache

By default, the linter uses a cache to prevent linting the same migration again. The default location of the cache on Linux is /home/<username>/.cache/django-migration-linter/<version>/<ldjango-project>.pickle.

Since the linter uses hashes, modifying migration files, will re-run the linter on that migration. If you want to run the linter without cache, use the flag --no-cache. If you want to invalidate the cache, delete the cache folder.

Tests

The easiest way to run the tests is to invoke tox.

Contributing

First, thank you very much if you want to contribute to the project. Please base your work on the master branch and also target this branch in your pull request.

License

django-migration-linter is released under the Apache 2.0 License.

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-migration-linter-0.1.3.tar.gz (17.2 kB view details)

Uploaded Source

Built Distribution

django_migration_linter-0.1.3-py2.py3-none-any.whl (26.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-migration-linter-0.1.3.tar.gz.

File metadata

  • Download URL: django-migration-linter-0.1.3.tar.gz
  • Upload date:
  • Size: 17.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.8rc1

File hashes

Hashes for django-migration-linter-0.1.3.tar.gz
Algorithm Hash digest
SHA256 35ab2968b025fe2e8aeba206b236d606dd00d289aa0faaf314f33e1a1ba2374a
MD5 4963dda21cf778f4d0d6a6bbffa25bb4
BLAKE2b-256 74996f6d94830b6746f901ec9975cf737fead9b0e60ae654a295a3725d4b5ff9

See more details on using hashes here.

File details

Details for the file django_migration_linter-0.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: django_migration_linter-0.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.6.8rc1

File hashes

Hashes for django_migration_linter-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 2c73afd0c631fa08d24af34884adf17e4ab34ef44913a25864735302d659e17f
MD5 7c59a097ebf86c6f4f1a11bb53358179
BLAKE2b-256 027b2391c23e2b802673b0a64116a776e77f605611e0f91abfb84d7201a2d5e3

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