Ticket #3997: 3997.diff
File 3997.diff, 571 bytes (added by , 17 years ago) |
---|
-
docs/model-api.txt
79 79 release_date = models.DateField() 80 80 num_stars = models.IntegerField() 81 81 82 .. note:: 83 Unless otherwise specified (``null`` or ``default`` attributes) ALL fields 84 are required to be set in an instance. Any missing field will cause 85 ``validate()`` to return errors and ``save()`` to raise exceptions. 86 82 87 Field name restrictions 83 88 ----------------------- 84 89