Getting to Know ForeignKey

作者 Scott Hou 日期 2016-07-02
Getting to Know ForeignKey

Model field: ForeignKey

All the model fields are related to the database structures, specificly the database column. Foreignkey is a one-to-many relationship of django models. If the foreignkey field of model A is pointed to model B then it means that A and B are related.