diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
index ee6644f..9d2ba82 100644
a
|
b
|
Thus, it's now possible to have multiple fields of type
|
577 | 577 | Models across files |
578 | 578 | ------------------- |
579 | 579 | |
580 | | It's perfectly OK to relate a model to one from another app. To do this, |
581 | | import the related model at the top of the model that holds your model. Then, |
| 580 | It's perfectly OK to relate a model to one from another app. To do this, import |
| 581 | the related model at the top of the file where your model is defined. Then, |
582 | 582 | just refer to the other model class wherever needed. For example:: |
583 | 583 | |
584 | 584 | from geography.models import ZipCode |