zero-downtime-migrations (zdm)
A PostgreSQL migration safety linter for Django, Alembic, and Aerich/Tortoise.
Why
Deploying database migrations without downtime requires careful attention to how PostgreSQL acquires locks. Operations like adding an index, altering a column to NOT NULL, or adding a foreign key can lock tables for extended periods on large datasets, blocking reads and writes and causing outages. zdm statically analyzes Django migrations and supported Alembic and Aerich revisions to catch these unsafe patterns before they reach production, helping teams ship schema changes safely during normal deployments.
What
A standalone Rust CLI tool that statically analyzes Django, Alembic, and Aerich migration files to catch unsafe patterns that cause table locks, outages, and data loss on large PostgreSQL databases. Distributed like ruff/uv — a single fast binary, installable via pip, uvx, or standalone download.
Supports Django 3.2+ — zdm parses migration files directly without importing Django, so it works with any Django version and doesn't require Django to be installed.
Alembic support
zdm also discovers Alembic revision scripts directly under alembic/versions/*.py. It statically supports direct op.* calls in upgrade():
create_table,create_index,drop_indexcreate_foreign_keyandcreate_check_constraint(includingpostgresql_not_valid=True), pluscreate_exclude_constraintalter_column(nullable=False)andalter_column(new_column_name=...)drop_columnandexecute("<static SQL>")
Use postgresql_concurrently=True only inside the canonical boundary:
with op.get_context().autocommit_block():
op.create_index("jobs_state_idx", "jobs", ["state"], postgresql_concurrently=True)
The Alembic path is intentionally static: zdm does not import or execute revision scripts, connect to a database, inspect SQLAlchemy models, resolve aliases/custom operations, or evaluate dynamic SQL. op.execute is inspected only when its first positional argument or sqltext keyword is a string literal; use explicit SQL when you want it checked.
Aerich/Tortoise support
zdm discovers Aerich revisions under migrations/<app>/<number>_*.py. Aerich's documented migration contract is a SQL string returned by upgrade(); zdm also supports the local-helper execute_statement(connection, sql) convention, including callbacks such as run_with_lock_timeout(db, _upgrade_attempt). It maps PostgreSQL CREATE/DROP INDEX, CREATE TABLE, and ALTER TABLE column and constraint statements to the same safety rules used for Django and Alembic.
The Aerich path is static: zdm does not import Tortoise, execute migrations, connect to a database, resolve imports, or evaluate variables and f-strings. Direct db.execute_script() and db.execute_query() calls, qualified helpers, keyword arguments, and dynamically assembled SQL are not checked. Generated modern revisions with MODELS_STATE may exempt their CREATE TABLE IF NOT EXISTS tables, including later newly-created models; hand-written files do not receive that exemption. R004 accepts RUN_IN_TRANSACTION = False only in that generated format, and concurrent SQL must be its script's only statement. Tortoise's built-in migration file layout is detected, but Tortoise 1.x projects are unsupported.
Installation
Breaking change: the
zero-downtime-migrationscommand alias has been removed. Usezdm. (alias zero-downtime-migrations=zdmin your shell is a one-line workaround if you depended on the old name.)
# Install via pip
pip install zdm
# Or use uvx to run without installing
uvx --from zdm zdm .
# Or install with pipx
pipx install zdm
Usage
# Lint a single migration
zdm app/migrations/0042_add_index.py
zdm alembic/versions/20260809_add_jobs.py
zdm migrations/models/1_20260823_add_jobs.py
# Lint all migrations in a directory
zdm app/migrations/
# Lint all migrations in the project
zdm .
# Diff mode: lint changed migrations in a PR
zdm --diff origin/main
# Staged diff mode: lint changes being committed by pre-commit
zdm --diff-staged origin/main
# Output formats
zdm --output-format json .
zdm --output-format compact .
# Select/ignore specific rules
zdm --select R001,R003 .
zdm --ignore R008 .
# Show explanation for a rule
zdm rule R001
# List every rule the binary recognises
zdm --list-rules
# Treat warnings as errors
zdm --warnings-as-errors .
--diff compares the merge base to HEAD and reads file contents from the
HEAD tree, giving deterministic PR/CI results even when the worktree is
dirty. --diff-staged compares the same merge base to the index and reads the
staged blobs.
Exit Codes
0— no issues found1— lint violations found (errors). Warnings alone do NOT cause exit code 1 unless--warnings-as-errorsis set.2— tool error (bad arguments, config parse failure, invalid file path)
JSON Output Schema
zdm --output-format json writes a single JSON object to stdout:
{
"diagnostics": [
{
"rule_id": "R001",
"rule_name": "non-concurrent-add-index",
"severity": "error",
"message": "Use AddIndexConcurrently instead of AddIndex …",
"path": "app/migrations/0001_bad.py",
"line": 8,
"column": 9,
"help": "Replace migrations.AddIndex with …"
}
],
"summary": { "total": 1, "errors": 1, "warnings": 0 }
}
severity is "error" or "warning". help is null when the
rule has no help text. The schema is pinned by the integration
test suite — every field above is guaranteed on every diagnostic.
Rules
| Rule | Name | Severity | Description |
|---|---|---|---|
| R001 | non-concurrent-add-index | Error | Use AddIndexConcurrently instead of AddIndex |
| R002 | unique-constraint-without-index | Error | Unique constraints need a concurrent index; partial/expression indexes use state-only metadata |
| R003 | runsql-create-index | Error | Use AddIndexConcurrently instead of raw SQL CREATE INDEX |
| R004 | missing-atomic-false | Error | Non-atomic migrations require atomic = False |
| R005 | remove-field-without-separate | Error | Use SeparateDatabaseAndState to remove fields safely |
| R006 | add-field-foreign-key | Error | Adding FK creates index and validates constraint, except plain FKs that disable both |
| R008 | disallowed-file-changes | Error | Don't change app code alongside migrations |
| R009 | separate-db-state-same-pr | Error | Don't deploy both steps of SeparateDatabaseAndState together |
| R010 | add-field-not-null | Error | Adding NOT NULL field without a Python or database default rewrites table |
| R011 | rename-field | Error | Renaming fields can break running code |
| R012 | irreversible-run-python | Warning | RunPython should have a reverse function |
| R013 | irreversible-run-sql | Warning | RunSQL should have a reverse SQL |
| R014 | model-imports | Error | Don't import models in RunPython |
| R015 | alter-field-not-null | Warning | AlterField that sets NOT NULL may scan rows, and type changes may rewrite the table |
| R016 | non-concurrent-remove-index | Error | Use RemoveIndexConcurrently instead of RemoveIndex |
| R017 | non-concurrent-add-constraint | Error | CHECK constraint validates all rows; EXCLUDE constraint builds an index non-concurrently |
| R018 | implicit-django-index | Error | AddField and non-empty AlterUniqueTogether/AlterIndexTogether build indexes non-concurrently; AlterField warns |
| R019 | table-rename-or-drop | Error | Renaming or dropping an existing table breaks running application code |
For Alembic revisions, zdm evaluates R001-R005, R010-R011, and R015-R019 against direct op.* calls in upgrade(). For Aerich revisions, zdm evaluates R001-R006, R010-R011, and R015-R017 plus R019 against supported literal PostgreSQL DDL reachable from upgrade(); R004 applies to recognized generated-format transaction settings. R018 is Django-only. In diff modes, changeset rule R008 also applies. The Django API references in this table apply only to Django; Alembic and Aerich diagnostics name their equivalent operations.
CreateModel Exemption
Several rules (R001, R002, R006, R010, R016-R019) automatically exempt operations that target models created in the same migration. This is because operations on newly created (empty) tables don't cause the locking issues these rules detect. The exemption is order-aware—a CreateModel that runs after the flagged op cannot retroactively exempt it—and follows RenameModel when the fresh table is renamed before a later operation.
Note: R007 (
fk-without-concurrent-index) was merged into R006 and retired. R006 now takes the conservative stance that a prebuilt concurrent index does not make a one-stepAddField(ForeignKey)safe on an existing table. Split the rollout instead of relying on an index exemption.
For example, this migration will NOT trigger R001:
class Migration(migrations.Migration):
operations = [
migrations.CreateModel(
name='Order',
fields=[('id', models.AutoField(primary_key=True))],
),
migrations.AddIndex( # Exempt: 'order' was just created above
model_name='order',
index=models.Index(fields=['created_at'], name='order_idx'),
),
]
R015 Limitation
R015 (alter-field-not-null) cannot tell, from a single AlterField operation, whether the column was previously nullable. It flags any AlterField whose resulting field is NOT NULL, which catches a genuine nullable→NOT NULL transition (the dangerous case) alongside benign re-stipulations of an already-NOT-NULL column. Because static analysis has no schema history, the rule emits Warning rather than Error — surfaced for review without breaking CI. Add # zdm: ignore R015 on operations you have verified are safe.
Inline Suppression
You can silence specific rules on a per-operation basis with a comment:
operations = [
# zdm: ignore R001
migrations.AddIndex(
model_name='order',
index=models.Index(fields=['created_at'], name='order_idx'),
),
migrations.AlterField( # zdm: ignore R015, R010
model_name='product',
name='sku',
field=models.CharField(max_length=50),
),
]
The comment can sit on the line just above the operation or on the same line as any line in the operation's range. Multiple rule IDs may be listed, separated by commas.
Configuration
Configure via pyproject.toml or zero-downtime-migrations.toml:
[tool.zdm]
select = ["R001", "R002"]
ignore = ["R008"]
warnings-as-errors = false
allowed-file-patterns = ["*.txt", "*.md", "models.py"]
exclude = ["**/test_migrations/**"]
Configuration Precedence
Settings are applied in this order (highest to lowest priority):
- CLI flags (
--select,--ignore,--warnings-as-errors) zero-downtime-migrations.tomlfound in the current directory or a trusted repo ancestorpyproject.toml[tool.zdm]section in the same directory- Default values
The config search starts in the current working directory. On Unix, if zdm is running inside a trusted git repository, it walks upward within that repository and stops at the first directory that contains zero-downtime-migrations.toml or a pyproject.toml with [tool.zdm]. The nearest .git is always the boundary; an untrusted boundary never falls through to an outer repository. A pyproject for another tool is ignored, so running zdm from repo/apps/myapp/migrations/ still picks up repo/zero-downtime-migrations.toml. Without a trusted .git ancestor—and on Windows, where zdm cannot yet validate repository ACL ownership—only the current directory is checked. Config inputs must be regular UTF-8 files no larger than 1 MiB.
CLI flags always override config file settings. If both zero-downtime-migrations.toml and pyproject.toml exist in the same directory, the standalone file takes precedence; multi-level merging is not performed.
Pre-commit Integration
Install zdm in the environment where pre-commit runs, then call that installed
binary from your .pre-commit-config.yaml:
repos:
- repo: local
hooks:
- id: zdm
name: zdm
entry: zdm
language: system
types: [python]
files: (^|.*/)(migrations|alembic/versions)/.*\.py$
exclude: __init__\.py$
Or use diff mode to only check changed migrations:
repos:
- repo: local
hooks:
- id: zdm-diff
name: zdm diff
entry: zdm --diff-staged origin/main
language: system
pass_filenames: false
always_run: true
The zdm-diff hook uses --diff-staged so it checks the staged index that
pre-commit is validating, rather than the previous HEAD commit.
The repository also publishes source-based pre-commit hooks for users who prefer
repo: https://github.com/Photoroom/zero-downtime-migrations with
rev: <latest release tag>. Those hooks install the package from source, so
Rust must be available in the pre-commit environment.
GitHub Actions
- uses: actions/checkout@v4
with:
# --diff needs the base ref and enough history to compute a merge base.
fetch-depth: 0
- name: Install zdm
run: pip install zdm
- name: Lint migrations
run: zdm --diff origin/main
Rust library API
The Rust crate exposes a small programmatic API, but it remains experimental
while the project is in the 0.x series. Prefer Migration::from_path or
Migration::from_source, Config, and the built-in rule registries. Low-level
parser, extractor, diagnostic-construction, discovery, and git helpers may
change between minor 0.x releases.
Comparison with Other Tools
| zdm | django-migration-linter | Django's makemigrations --check |
|
|---|---|---|---|
| Requires Django installed | No | Yes | Yes |
| Requires project setup | No | Yes (settings.py) | Yes (full environment) |
| Checks for missing migrations | No | No | Yes |
| Checks for unsafe operations | Yes (16 active rules; zdm --list-rules) |
Yes (~8 rules) | No |
Configurable via pyproject.toml |
Yes (walks up within trusted repos) | Yes | N/A |
| Can run without database | Yes | Yes | No |
| Language | Rust | Python | Python |
When to use what:
- Use
makemigrations --checkto ensure all model changes have migrations - Use zdm or django-migration-linter to catch unsafe migration patterns
- zdm is useful when you want to run checks in CI without setting up Django, or when you need the additional rules (NOT NULL alterations, RenameField, irreversible migrations, RemoveIndex)
License
MIT
Release files for zdm 0.7.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| zdm-0.7.0.tar.gz | 135.3 kB | Details |
Built distributions (wheels)
| File | Reset | |||
|---|---|---|---|---|
| zdm-0.7.0-py3-none-win_arm64.whl | Python 3 | none | Windows ARM64 | Details |
| zdm-0.7.0-py3-none-win_amd64.whl | Python 3 | none | Windows x86-64 | Details |
| zdm-0.7.0-py3-none-manylinux_2_28_x86_64.whl | Python 3 | none | Linux glibc 2.28+ x86-64 | Details |
| zdm-0.7.0-py3-none-manylinux_2_28_aarch64.whl | Python 3 | none | Linux glibc 2.28+ ARM64 | Details |
| zdm-0.7.0-py3-none-macosx_11_0_arm64.whl | Python 3 | none | macOS 11.0+ ARM64 | Details |
| zdm-0.7.0-py3-none-macosx_10_12_x86_64.whl | Python 3 | none | macOS 10.12+ x86-64 | Details |
Total release size: 7.3 MB
Release files / zdm-0.7.0.tar.gz
| Download URL | zdm-0.7.0.tar.gz |
|---|---|
| Size | 135.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7c118a7526229d1dd6d30adaf2c696ac24fc250d68528f56765c7c492835bd67
|
|
BLAKE2b-256 checksum How to use checksums |
2ce48f56bb776a6c56a02725b9bb9c6441560f86ea149a28156b98050de30dd8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-win_arm64.whl
| Download URL | zdm-0.7.0-py3-none-win_arm64.whl |
|---|---|
| Size | 1.3 MB |
| Tags | Python 3 Windows ARM64 |
|
SHA-256 checksum How to use checksums |
6e0eb82ebdec8bf580dc30bd84457f0a58f2ab175e7f8e2e15170bd9a5fab638
|
|
BLAKE2b-256 checksum How to use checksums |
b58b4a1a5b598d6148ea40d2043fc6ef4c989f3368d3c6f2275f334c690d7367
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-win_amd64.whl
| Download URL | zdm-0.7.0-py3-none-win_amd64.whl |
|---|---|
| Size | 1.4 MB |
| Tags | Python 3 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
2fd47c2f4690670cd7a425d42fa16424e195a223772283bd91c4d8b5966d26b4
|
|
BLAKE2b-256 checksum How to use checksums |
9652de2657647d4fc1615339ac9862ca5ef120104ab00e170b953548419a7a41
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-manylinux_2_28_x86_64.whl
| Download URL | zdm-0.7.0-py3-none-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | Linux glibc 2.28+ x86-64 Python 3 |
|
SHA-256 checksum How to use checksums |
b2881460513650d0953279b983c3e9f6bd97496b31dc955d04e4cdd5798150e7
|
|
BLAKE2b-256 checksum How to use checksums |
5c8e177e8ab46ef0e6d7d4d3d1dcba3be7e48076d92389536745dac6126b0cce
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-manylinux_2_28_aarch64.whl
| Download URL | zdm-0.7.0-py3-none-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 1.2 MB |
| Tags | Linux glibc 2.28+ ARM64 Python 3 |
|
SHA-256 checksum How to use checksums |
563719b08e34eb51600c88524f21029627fbc666e995e74b7b4bdb5dc4312609
|
|
BLAKE2b-256 checksum How to use checksums |
39f3e37732e509b179f75955f0024f38e0dbccf1e8fb4d9cd3370cc23fea46b0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-macosx_11_0_arm64.whl
| Download URL | zdm-0.7.0-py3-none-macosx_11_0_arm64.whl |
|---|---|
| Size | 1.1 MB |
| Tags | Python 3 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
9a1fd90dc65eb8e1075dddaa953835e862668c63ff1a3e766673db65c053187d
|
|
BLAKE2b-256 checksum How to use checksums |
0a403b9e5f63e70c644026eda300e6958add6534fd79d540ab5364085e4fffc3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency logRelease files / zdm-0.7.0-py3-none-macosx_10_12_x86_64.whl
| Download URL | zdm-0.7.0-py3-none-macosx_10_12_x86_64.whl |
|---|---|
| Size | 1.1 MB |
| Tags | Python 3 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
30b104b8b18a183ea52f4a6af28ef48ba50d0dc390b22f21980d4924fd4581c2
|
|
BLAKE2b-256 checksum How to use checksums |
0aa339f7b1d878d659095c3acb8c920a4b82363fa5620994b6ede166cbe6d071
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/6.1.0 CPython/3.13.13
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 3, 2026.
Transparency log