Skip to main content

Detect, diagnose, and auto-fix Django migration problems, circular dependencies, and merge conflicts.

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

There are two ways to use it — pick whichever you prefer:

1. Standalone CLI (zero config). After installing, the migraid command is available directly. It bootstraps Django for you, so there is nothing to add to INSTALLED_APPS:

migraid doctor

It locates your Django settings automatically via (in order): a --settings <module> flag, the DJANGO_SETTINGS_MODULE environment variable, or your project's manage.py. Run it from your project directory, or set DJANGO_SETTINGS_MODULE / pass --settings.

2. As a Django app. Add it to INSTALLED_APPS and use it through manage.py:

INSTALLED_APPS = [
    ...
    "migraid",
]

Both forms support the exact same subcommands.

Quick Start

# Diagnose all migration issues in your project (standalone CLI)
migraid doctor

# ...or via manage.py when installed as an app
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 --update-db --noinput

# 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 --yes

# Clean up untracked migration files after switching branches
python manage.py migraid sync-branch --dry-run

# Fix InconsistentMigrationHistory in the database
python manage.py migraid repair

# Provision a new database for the current branch
python manage.py migraid db add

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

Problems This Solves

Issue Code Django Error / Search Term Command
Conflicting leaf migrations E001 multiple leaf nodes, migration merge conflict fix-conflicts
Circular migration dependencies E002 CircularDependencyError, circular dependency — (reports)
Out-of-order numbering W006 gap in numbering, renumber migrations renumber
Dependency on a deleted migration E004 NodeNotFoundError, missing dependency — (reports)
Renamed applied migration E005 InconsistentMigrationHistory, table desync repair / rebase / renumber / fix-conflicts --update-db
Stale django_migrations rows W001 ghost migrations, remove from django_migrations prune
RunPython without reverse_code W002 unreversible data migration — (reports)
Squashed migration cleanup W003 remove old migrations after squash — (reports)
Merge migrations in rebase flow W004 delete django merge migrations rebase
Non-deterministic dependencies W005 random migration order — (reports)
Multi-branch database drift database state out of sync with branch db add

Common Scenarios & How-To

How to fix a Django migration merge conflict?

When two developers create 0005_*.py on different branches, run:

python manage.py migraid fix-conflicts

This linearizes the migrations into 0005_... and 0006_... automatically.

How to rebase migrations onto another branch?

To renumber your local migrations to follow the latest from main:

python manage.py migraid rebase --base main

How to fix InconsistentMigrationHistory?

If you've renamed or renumbered migrations that are already applied, use:

python manage.py migraid repair

Or use the --update-db flag during renumbering:

python manage.py migraid renumber myapp --update-db

This synchronizes the django_migrations table with your new file names.

How to use a separate database per git branch?

To automatically switch databases when you switch branches:

python manage.py migraid db add

This provisions a new database and registers it to your current branch.

How to find circular dependencies?

Run the diagnostic tool to identify cycles in your migration graph:

python manage.py migraid doctor

Command Reference

Commands fall into three groups:

Diagnose (read-only): doctor, graph

Rewrite migration files: rebase, fix-conflicts, linearize, renumber — file plane only by default; pass --update-db to also rename django_migrations rows.

Repair DB / branch state: prune, sync-branch, repair, db — these commands exist to fix or manage the database or branch state directly.

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] [--update-db] [--noinput] [--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] [--update-db] [--noinput] [--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] [--update-db] [--noinput] [--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] [--update-db] [--noinput] [--database ALIAS]

prune

Remove orphaned django_migrations rows for migrations no longer on disk.

python manage.py migraid prune [--dry-run] [--yes] [--noinput] [--database ALIAS] [--allow-remote-db]

sync-branch

Align local migration files (and optionally the database) to the current git branch state. Detects untracked migration files and optionally removes stale django_migrations rows or reverses applied schema changes.

python manage.py migraid sync-branch [--app LABEL] [--dry-run] [--yes] [--noinput] [--database ALIAS] [--update-db] [--schema]

graph

Print or export the migration DAG.

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

repair

Fix InconsistentMigrationHistory by marking misapplied migrations as unapplied so they can be re-run in order.

python manage.py migraid repair [--dry-run] [--yes] [--database ALIAS]

db

Manage per-branch databases. Subcommands: add, rm, ls, prune.

# Provision/register DB for current branch
python manage.py migraid db add [--alias ALIAS] [--database BASE_ALIAS]

# List all mappings
python manage.py migraid db ls

# Remove mapping and drop DB
python manage.py migraid db rm [--branch BRANCH]

# Prune entries for deleted branches
python manage.py migraid db prune

Safety Model

Commands act on the file plane by default. Any DB change requires an explicit flag.

  • --update-db authorizes renaming django_migrations rows in step with file renames (rewrite commands) or deleting stale rows (sync-branch).
  • --schema authorizes running migrate backwards to reverse schema changes (sync-branch only).
  • prune and sync-branch are inherently DB/file-repair commands — running them is the authorization, and they always preview + confirm before writing.

Every mutation command also:

  1. Checks for uncommitted git changes (bypass with --force on rewrite commands)
  2. Guards against rewriting already-applied migrations (bypass with --allow-applied, or use --update-db which implies it)
  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 / --noinput)
  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, --update-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 --update-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.3.0b9.tar.gz (85.5 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.3.0b9-py3-none-any.whl (51.0 kB view details)

Uploaded Python 3

File details

Details for the file django_migraid-0.3.0b9.tar.gz.

File metadata

  • Download URL: django_migraid-0.3.0b9.tar.gz
  • Upload date:
  • Size: 85.5 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.3.0b9.tar.gz
Algorithm Hash digest
SHA256 caf70a65951f0ec81b63b26004dfcca444a213a40a45f17f7d8ba57cef4c3aa1
MD5 47647ca7e731ff6b349444ec2ce34d61
BLAKE2b-256 a051071fa634e1933b02c3d325a4be455ee335d5180994443bf970acbb74263d

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_migraid-0.3.0b9.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.3.0b9-py3-none-any.whl.

File metadata

File hashes

Hashes for django_migraid-0.3.0b9-py3-none-any.whl
Algorithm Hash digest
SHA256 57a4361a12bb49b4c747ca7d1843be5ba8882e3e61ae4e78ecb0488a3984d9a3
MD5 59d6ab0d00c3225f915053c0833060b8
BLAKE2b-256 0575ec03d56e244773272fa50f0d104921ec00f3c69f69b932f773f154d8e730

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_migraid-0.3.0b9-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