Easily use fixtures in Django 1.7+ data migrations.
Project description
Easily use fixtures in Django 1.7+ data migrations.
The app also contains a management command to automatically convert
initial_data.*
into migrations.
Prior to Django 1.7 initial_data.*
files where automatically run when the
management command sync_db
was run, however this behaviour was
discontinued in Django 1.7. Thus, this app is useful if you rely on this
behaviour.
Essentially it leaves the initial_data.*
file in place and generates a
data migration - as outlined
in the docs.
Install
pip install django-migration-fixture
Then add django_migration_fixture
to your INSTALLED_APPS
.
INSTALLED_APPS += (
'django_migration_fixture',
)
Usage
To automatically change your old-skool initial_data.*
files the simplest
method is to simply call the create_initial_data_fixtures
management
command.
./manage.py create_initial_data_fixtures
The management command will automatically look for initial_data.*
files
in your list of INSTALLED_APPS
and for each file found creates a data
migration, similar to the following;
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django_migration_fixture import fixture
import myapp
class Migration(migrations.Migration):
operations = [
migrations.RunPython(**fixture(myapp, 'initial_data.yaml'))
]
From this point it’s just a matter of running migrate to apply your data migrations.
Note that this solution also supports rolling back your migration by deleting using primary key. If your migration should not be reversible then you can pass reversible=False to fixture().
You can use this app for any fixtures, they don’t have to be your initial_data
files. Simply create a empty migration and add a call to
migrations.RunPython(**fixture(myapp, 'foo.yaml'))
.
API Documentation
fixture(app, fixtures, fixtures_dir='fixtures', raise_does_not_exist=False, reversible=True)
app is a Django app that contains your fixtures
fixtures can take either a string or a list of fixture files. The extension is used as the format supplied to
django.core.serializers.deserialize
fixtures_dir is the directory inside your app that contains the fixtures
ignore_does_not_exist - if set to True then
django_migration_fixture.FixtureObjectDoesNotExist
is raised if when attempting a rollback the object in the fixture does not exist.reversible - if set to
False
then any attempt to reverse the migration will raisedjango.db.migrations.migration.IrreversibleError
.
Essentially fixture()
returns a dict containing the keys code
and reverse_code
which attempt to apply your fixture and rollback your
fixture, respectively.
Inspiration
While attempting to migrate a large Django project to 1.7 I came across an issue which caused me to create Django ticket 24023.
The project has a lot of fixtures that ensure a baseline state and converting them to code isn’t really ideal, thus this project.
That issue has since been closed as a duplicate of ticket 23699 which itself has been closed and released in Django 1.7.2.
Needless to say, you may still need to create data migrations for fixtures regardless of the issue I came across.
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
File details
Details for the file django-migration-fixture-0.5.1.tar.gz
.
File metadata
- Download URL: django-migration-fixture-0.5.1.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39ae9f3a387a203f3c1400c9f65edf00fd3a276e844f63f4b1bc26e8b847d92d |
|
MD5 | d8ff578f7cdc39a3655730277468798a |
|
BLAKE2b-256 | 88c4eb98ef136b05dc32923334d7fb432879b4c447096c5fa7b208ab01629f20 |