How can you create models (and thus tables) with a compound (composite) primary/unique key using Django?

link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

Django does not support compound primary keys. You can create a single compound unique key with Meta.unique_together.

link|improve this answer
Thanks Ignacio! How to make this work with Many-to-Many relationship? Will it work? – Viet Feb 16 '10 at 5:46
I'm really curious as to what you believe the connection between a compound unique key and a many-to-many relationship is... – Ignacio Vazquez-Abrams Feb 16 '10 at 5:55
Say we have 2 entities: Students & Subjects. Students can take many subjects. A join table with compound primary key: Table student_subjects: -------------------------------- student_id subject_id It's a basic technique to create n-to-n relationships. – Viet Feb 16 '10 at 5:58
So then just put it in the through table. – Ignacio Vazquez-Abrams Feb 16 '10 at 6:02
thanks. ok then :) – Viet Feb 16 '10 at 6:09
feedback

A composite key consists of more than one attribute to uniquely identify an entity occurrence. This differs from a compound key in that one or more of the attributes, which make up the key, are not simple keys in their own right.

For example, you have a database holding your CD collection. One of the entities is called tracks, which holds details of the tracks on a CD. This has a composite key of CD name, track number.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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