Ticket #6944: mini_typo.diff

File mini_typo.diff, 678 bytes (added by Julien Phalip, 16 years ago)
  • E:/Software/workspace/django/docs/model-api.txt

     
    681681If ``True``, this field must be unique throughout the table.
    682682
    683683This is enforced at the database level and at the Django admin-form level. If
    684 you try to add save a model with a duplicate value in a ``unique`` field, a
     684you try to save a model with a duplicate value in a ``unique`` field, a
    685685``django.db.IntegrityError`` will be raised by the model's ``save()`` method.
    686686
    687687``unique_for_date``
Back to Top