Skip to main content

Detect, diagnose, and auto-fix Django migration problems in Git workflows

Project description

django-migraid

Detect, diagnose, and auto-fix Django migration problems in Git workflows.

CI PyPI Python License


The Problem

Two developers branch from main at migration 0004. Both generate 0005_*.py. Main merges one. The second developer's rebase leaves them with a conflict that makemigrations --merge doesn't cleanly handle in rebase-based workflows. django-migraid fixes this — and ten other common migration pain points.

Installation

pip install django-migraid

Add to INSTALLED_APPS:

INSTALLED_APPS = [
    ...
    "migraid",
]

Quick Start

# Diagnose all migration issues in your project
python manage.py migraid doctor

# Rebase your branch's migrations onto main
python manage.py migraid rebase --base main --dry-run

# Rebase AND keep django_migrations in sync for applied migrations (CI-friendly)
python manage.py migraid rebase --base main --sync-db --no-input

# Fix conflicting leaf migrations
python manage.py migraid fix-conflicts --dry-run

# Fix out-of-order numbering
python manage.py migraid renumber myapp --dry-run

# Remove stale django_migrations rows
python manage.py migraid prune

# Visualize the migration DAG
python manage.py migraid graph myapp --format mermaid

Problems This Solves

Issue Code Command
Conflicting leaf migrations (parallel development) E001 fix-conflicts
Circular migration dependencies E002 — (reports)
Out-of-order / gap numbering after rebase E003 renumber
Dependency on a deleted migration E004 — (reports)
Renamed applied migration (table desync) E005 rebase/renumber/fix-conflicts --sync-db
Stale django_migrations rows W001 prune
RunPython without reverse_code W002 — (reports)
Squashed migration with old files still present W003 — (reports)
Merge migrations in a rebase-workflow repo W004 rebase
Non-deterministic dependency ordering W005 — (reports)
Cross-app dependency risks I001 — (reports)
--fake / --fake-initial footgun patterns I002 — (reports)

Command Reference

doctor

Read-only diagnostic. Reports every detected issue with severity.

python manage.py migraid doctor [--app LABEL] [--format text|json]

rebase

Renumber local branch migrations to follow the latest from a target branch.

python manage.py migraid rebase [--base BRANCH] [--app LABEL] [--dry-run] [--yes] [--force] [--allow-applied] [--sync-db] [--no-input] [--database ALIAS]

fix-conflicts

Resolve multiple-leaf conflicts by linearizing the fork.

python manage.py migraid fix-conflicts [--app LABEL] [--dry-run] [--yes] [--force] [--allow-applied] [--sync-db] [--no-input] [--database ALIAS]

linearize

Rewrite history into a gap-free 0001..N chain where each migration depends on exactly one predecessor — renumbering, collapsing redundant dependency lists, resolving forks, and deleting merge migrations in one pass. Cross-app dependencies are preserved by default (--strip-cross-app to drop them).

python manage.py migraid linearize [--app LABEL] [--strip-cross-app] [--dry-run] [--yes] [--force] [--allow-applied] [--sync-db] [--no-input] [--database ALIAS]

renumber

Fix gap or duplicate numbering in a single app's migrations.

python manage.py migraid renumber <app> [--dry-run] [--yes] [--force] [--allow-applied] [--sync-db] [--no-input] [--database ALIAS]

prune

Remove orphaned django_migrations rows for migrations no longer on disk.

python manage.py migraid prune [--dry-run] [--yes] [--allow-applied]

graph

Print or export the migration DAG.

python manage.py migraid graph [app] [--format mermaid|dot|ascii] [--output FILE]

Safety Model

Every mutation command:

  1. Checks for uncommitted git changes (bypass with --force)
  2. Guards against rewriting already-applied migrations (bypass with --allow-applied)
  3. Creates a migraid-backup-<timestamp> git ref before any writes
  4. Shows a diff-style preview before making changes
  5. Asks for confirmation (bypass with --yes)
  6. Maintains an undo log — reverses all file ops automatically if anything fails
  7. Self-validates after apply: if the migration graph gets worse, auto-reverts

--dry-run on any mutation command prints the full preview without writing.

When renaming applied migrations, --sync-db renames the matching django_migrations rows in the same per-app transaction.atomic() block as the file changes (preserving the applied timestamp), writes a replayable inverse-SQL undo script, and rolls back both files and rows on any failure. See the sync-db guide.

CI Integration

Add to your pre-push hook or CI pipeline:

python manage.py migraid doctor --format json | jq '.[] | select(.severity == "error")'

Or fail CI on any ERROR-level issue:

python manage.py migraid doctor

(exits non-zero if any E0xx issues are found)

Contributing

See CONTRIBUTING.md.

License

Apache 2.0 — see 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_migraid-0.2.0b1.tar.gz (58.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_migraid-0.2.0b1-py3-none-any.whl (37.5 kB view details)

Uploaded Python 3

File details

Details for the file django_migraid-0.2.0b1.tar.gz.

File metadata

  • Download URL: django_migraid-0.2.0b1.tar.gz
  • Upload date:
  • Size: 58.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for django_migraid-0.2.0b1.tar.gz
Algorithm Hash digest
SHA256 5d666c9825dd0b9cf1ef09dd5fc2f2daf93d16fdec8da3e470f509c6e685c149
MD5 aee5b4541fde57f5e081be21e88436d7
BLAKE2b-256 ff6236e803198b6a7f013bb8afeb93b3de329ef076d832e4c1dd35d91b915f83

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_migraid-0.2.0b1.tar.gz:

Publisher: release.yml on AhmedShehab/django-migraid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_migraid-0.2.0b1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_migraid-0.2.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 6622bba817ddad20cb43b4c3091dff0e84436e3320aa86fde0d1ed55c4106098
MD5 804533f8dc9199ebf3dc2fb392d6c41d
BLAKE2b-256 371cdbd664598c8099e8ebd92fe2e832c637bc04a8442f93dbdf70b6c6bbc126

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_migraid-0.2.0b1-py3-none-any.whl:

Publisher: release.yml on AhmedShehab/django-migraid

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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