according to the docu this is pretty straight forward:
class Article(models.Model):
headline = models.CharField(max_length=200)
# ...
site = models.ForeignKey(Site)
but what if i have an additional Model? i.e.:
class ArticleAttachment(models.Model):
file = models.FileField(upload_to="foo/bar")
# ...
ArticleAttachment() is already associated with an Article (which is already associated with a site). should i still add the foreignkey to the site? and if yes/no, why?
(performance is not an issue.)
thx.