Fixed typo in docs/model-api.txt

git-svn-id: http://code.djangoproject.com/svn/django/trunk@568 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-08-26 19:11:54 +00:00
parent 25d8441d72
commit df3564dace
1 changed files with 1 additions and 1 deletions

View File

@ -391,7 +391,7 @@ how you'd represent that::
To create a recursive relationship -- an object that has a many-to-one To create a recursive relationship -- an object that has a many-to-one
relationship with itself -- use ``meta.ForeignKey("self")``. 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 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 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. have to deal with the database column name, unless you write custom SQL.