django-seed
django-seed copied to clipboard
django_seed.exceptions.SeederException: Field general.Location.region cannot be null
So I have an app named clients that has the following relations
client
-> location
location is in a different app named general
Location
-> region
-> country
all of the above are linked with ForeignKey
When I try to run
python manage.py seed general clients --number=15
the general runs fine but the clients give me django_seed.exceptions.SeederException: Field general.Location.region cannot be null
I'm not sure what is going on system is:
Django 5.1.6
django-seed 0.3.1
Thanks for the help