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?
|
feedback
|
|
Unless specified otherwise, an index will be created for a
| |||
|
feedback
|