I have some new groups that I'd like to add to Django's "auth_group" table and I'd prefer to use South to "migrate" that data into the database. Unfortunately, I'm not sure what steps I should take to create the migration file and then have it load my fixture.

Any thoughts?

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

The South docs have a section about fixtures that includes this sample:

def forwards(self, orm):
    from django.core.management import call_command
    call_command("loaddata", "my_fixture.json")
link|improve this answer
Yeah, I was able to get that far. However, what model do you define in your fixture? Thus far, I've tried "django.auth_group" and "auth_group". – Huuuze Nov 5 '10 at 19:35
I got it -- it's "auth.group". – Huuuze Nov 5 '10 at 19:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.