Skip to main content

Django command to install the named fixture(s) in the database without overriding existing primary keys.

Project description

https://img.shields.io/github/workflow/status/mohi7solanki/dj-snake/CI/main?style=for-the-badge

Installing fixtures with django’s loaddata command overrides objects with the same primary key. While this is not a problem if you are installing the fixtures against a fresh DB with no data but in case you have existing data then loading the fixture can be problematic as all the existing rows with the same primary key will be updated with the new data from the fixture(s) Using djloaddata to install fixture ensures that no existing rows will be touched and all the objects will only be inserted while preserving all the relations between model objects.

Requirements

Python 3.6 to 3.10 supported.

Django 2.2 to 4.0 supported.


Installation

First, install with pip:

python -m pip install dj-snake

Second, add the app to your INSTALLED_APPS setting:

INSTALLED_APPS = [
    ...,
    "dj_snake",
    ...,
]

The app adds a new management command named djloaddata.

Usage

python manage.py djloaddata fixture [fixture ...]

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

dj-snake-1.1.2.tar.gz (7.4 kB view hashes)

Uploaded Source

Built Distribution

dj_snake-1.1.2-py3-none-any.whl (6.6 kB view hashes)

Uploaded Python 3

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