How do you extend the Site model in django?

后端 未结 5 1275
情书的邮戳
情书的邮戳 2021-02-07 23:40

What is the best approach to extending the Site model in django? Creating a new model and ForeignKey the Site or there another approach that allows me to subclass the Site model

5条回答
  •  有刺的猬
    2021-02-08 00:10

    You can have another model like SiteProfile which has a OneToOne relation with Site.

提交回复
热议问题