class Comments(models.Model):
    content = models.ForeignKey(Content)

Do I need to add a db_index to "content"? Or would that automatically be indexed because it's a foreign key?

link|improve this question

feedback

1 Answer

up vote 7 down vote accepted

Unless specified otherwise, an index will be created for a ForeignKey. Relevant source code:

class ForeignKey(RelatedField, Field):
    # snip
    def __init__(self, to, to_field=None, rel_class=ManyToOneRel, **kwargs):
        # snip
        if 'db_index' not in kwargs:
            kwargs['db_index'] = True
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.