From df3564dace7838d517714c6af3ceeeb11266839e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 26 Aug 2005 19:11:54 +0000 Subject: [PATCH] Fixed typo in docs/model-api.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@568 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/model-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/model-api.txt b/docs/model-api.txt index 03a212ed3c..c88c0e971a 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -391,7 +391,7 @@ how you'd represent that:: To create a recursive relationship -- an object that has a many-to-one relationship with itself -- use ``meta.ForeignKey("self")``. -The name of a ``ForeignKey`` (``pizza`` in the example above) generally should +The name of a ``ForeignKey`` (``city`` in the example above) generally should be the name of the model, singular. Behind the scenes, Django appends "_id" to the field name to create its database column name. But your code should never have to deal with the database column name, unless you write custom SQL.