One of the things that bugs me about Django fixtures is that you've got to specify every model's primary key. Is there any way to create fixtures without having to specify a primary key for each row?
|
|
Use "pk: null" instead of "pk: 1" (or whatever), which will result in the PK being set to None, and when the object is saved a primary key will be assigned. This works for YAML at least, I'm guessing you're using that if you are creating by hand. |
|||||||||||||||
|
|
You should have a look at Natural Keys if you're wiling to add relation without using pk's http://docs.djangoproject.com/en/1.2/topics/serialization/#natural-keys |
|||||||
|
|
A friend of mine suggested the |
|||
|
|
I had to deal with existing DB schema without possibility to change it, so I need a table with complex primary key or without it at all - but not with the serial one. What I did: I've specified a primary_key=True to the field, which should not be unique at all and wrote overloaded method:
In fact, it worked for my needs, but there are more validations call inside django.contib.admin.* and not all the inlines e.t.c are guaranteed to work. That was the only solution I could implement... (( |
||||
|
|