2011-01-29 12 views

答えて

43

特に指定のない限り、ForeignKeyのインデックスが作成されます。関連するソースコード:

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 
+0

ForeignKeyでインデックスを作成しないようにするには、「db_index = False':http://code.djangoproject.com/ticket/13730 –

関連する問題