A field on a model, foo = models.ForeignKey(Foo) will automatically add a database index for the column, in order to make look-ups faster. That's good and well, but Django's docs don't state whether the fields in a model-meta's unique_together receive the same treatment. I happen to have a model in which one char field which is listed in unique_together requires an index for quick lookups. I know that it won't hurt anything to add a duplicate db_index=True in the field definition, but I'm curious.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

If unique_together does add an index, it will be a multiple column index.

If you want one of the columns to be indexed individually, I believe you need to specify db_index=True in the field definition.

link|improve this answer
feedback

According to the docs, it will only enforce uniqueness on database level. I think generally making a field unique does not imply it has an index. Though you could also simply check on db level if the index exists. Everything indicates though it does not.

link|improve this answer
The "imply" part of my question pertains to Django-specific behavior. models.ForeignKey sets db_index=True by default, in the field definition. I believe as well that a unique=True field also creates an index (database-level), which is how the unique checks operate quickly (correct me, if I'm wrong). – orokusaki Oct 20 '11 at 3:05
I think that depends how your database engine handles UNIQUE constraints. Most do set an index if I am right. This has nothing to do with Django though. – Torsten Oct 20 '11 at 3:48
Indeed, the models.ForeignKey part has to do with Django, not the unique=True. I mentioned the unique=True as an aside, because of the making a field unique does not... portion of your answer. – orokusaki Oct 20 '11 at 4:02
1  
unique_together is also enforced at the database level and not in Django. Assuming that your Database engine does support indexes on unique columns automatically, the index will be set. If not, then not. That's your answer. Additionally browsing through Django's code does not indicate they would set a db index on a unique_together. – Torsten Oct 20 '11 at 8:09
feedback

Your Answer

 
or
required, but never shown

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