mirror of
https://github.com/django/django.git
synced 2025-03-26 09:10:50 +00:00
Fixed typo in docs/topics/db/models.txt.
This commit is contained in:
parent
2f91e7832f
commit
833878411c
@ -514,7 +514,7 @@ the intermediate model::
|
||||
<QuerySet [<Person: Ringo Starr>, <Person: Paul McCartney>]>
|
||||
|
||||
You can also use ``add()``, ``create()``, or ``set()`` to create relationships,
|
||||
as long as your specify ``through_defaults`` for any required fields::
|
||||
as long as you specify ``through_defaults`` for any required fields::
|
||||
|
||||
>>> beatles.members.add(john, through_defaults={'date_joined': date(1960, 8, 1)})
|
||||
>>> beatles.members.create(name="George Harrison", through_defaults={'date_joined': date(1960, 8, 1)})
|
||||
|
Loading…
x
Reference in New Issue
Block a user