Changes between Version 2 and Version 3 of IntegrityError


Ignore:
Timestamp:
Jul 29, 2009, 1:39:53 PM (15 years ago)
Author:
Deniz Dogan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IntegrityError

    v2 v3  
    11Exception raised when the relational integrity of the database is affected, e.g. a foreign key check fails, duplicate key, etc.
    22
    3 (Please add a snippet of code explaining where to find IntegrityError so that developers don't have to search through their file system to find it.)
     3{{{
     4from django.db import IntegrityError
     5}}}
Back to Top