Skip to main content

Management command to attempt Django migrations and rollback on failure

Project description

django-migrate-or-rollback

While single migrations in Django are atomic (as long as they have the default atomic=True), a group of migrations are not. Thus, when running migrations, you can have a partial failure where some but not all of your migrations succeed. This library fixes that.

This library provides a new management command migrate_or_rollback. It's a drop-in replacement for the Django builtin management command migrate. Here's how it works:

  1. Checks your database and current migration files for the latest migrations run per Django app.
  2. Runs migrations as normal.
  3. If migrations fail, it rolls back to the migrations identified in step 1.

Instalation

pip install django-migrate-or-rollback

Alternatively, add django-migrate-or-rollback to your requirements.txt file.

Then, add "django_migrate_or_rollback" to your INSTALLED_APPS in settings.py, like so:

# settings.py
INSTALLED_APPS = [
    # ...
    "django_migrate_or_rollback",
]

Usage

Run python manage.py migrate_or_rollback instead of the standard migrate command.

In particular, you should use migrate_or_rollback in place of migrate in your deployment scripts or CI/CD system.

migrate_or_rollback has all of the same options as migrate, such as the --noinput flag.

Warning

This library assumes that your migrations are reversable. Not all migrations are reversible. Additionally, rolling back migrations only reverses schema doesn't rewind the database contents.

In particular:

  • Deleted data (such as dropping columns or tables) won't be restored by rolling back the migration that deletes it. To avoid this, you should make fields nullable in one deploy and delete them in the next.
  • RunPython statements that are missing a reverse function will error on rollback. At a minimum, add migrations.RunPython.noop as a reverse function. Additionally, RunPython reverse functions can be used to rewind changes to database contents on migration rollback.
  • A migration that deletes a non-nullable field will error on rollback. To avoid this, make the field nullable in one deploy and delete it in the next.

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-migrate-or-rollback-0.0.2.tar.gz (3.8 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-migrate-or-rollback-0.0.2.tar.gz.

File metadata

File hashes

Hashes for django-migrate-or-rollback-0.0.2.tar.gz
Algorithm Hash digest
SHA256 30c790743b076cf6493cd59f165fc7de21be417116c611ef8574ff4effa7b50f
MD5 b782b0e519d922c607a817437e31861c
BLAKE2b-256 1ee7da0d49e5f39d94e14561919557a4df42fe35e994d6768e912519db1b6ec1

See more details on using hashes here.

File details

Details for the file django_migrate_or_rollback-0.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for django_migrate_or_rollback-0.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 92c57877c5c32adc6124c342cd118e23c2fe483fe6416b287cb91ed583b9baf6
MD5 1bb0dbf54f8dfd14e08186fad03d7375
BLAKE2b-256 3001498c86c65022d7926b9cd494b84fcba7c87d7221c0dfe218ace903ebbba7

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