Ticket #20967: 20967.diff

File 20967.diff, 541 bytes (added by eng.abdelrazzak@…, 11 years ago)

the patch of the solution

  • docs/topics/db/models.txt

    diff --git a/docs/topics/db/models.txt b/docs/topics/db/models.txt
    index b0011e1..cb75256 100644
    a b For example::  
    991991        serves_pizza = models.BooleanField()
    992992
    993993All of the fields of ``Place`` will also be available in ``Restaurant``,
    994 although the data will reside in a different database table. So these are both
     994although the data will reside in a different database tables. So these are both
    995995possible::
    996996
    997997    >>> Place.objects.filter(name="Bob's Cafe")
Back to Top