Add check constraint support - needed a few Field changes

This commit is contained in:
Andrew Godwin 2012-09-07 15:40:59 -04:00
parent 375178fc19
commit ca9c3cd39f
12 changed files with 143 additions and 24 deletions

View file

@ -170,6 +170,7 @@ class DatabaseFeatures(BaseDatabaseFeatures):
requires_explicit_null_ordering_when_grouping = True
allows_primary_key_0 = False
uses_savepoints = True
supports_check_constraints = False
def __init__(self, connection):
super(DatabaseFeatures, self).__init__(connection)