diff options
| author | Shai Berger <shai@platonix.com> | 2014-05-28 21:16:24 +0300 |
|---|---|---|
| committer | Shai Berger <shai@platonix.com> | 2014-05-28 21:16:24 +0300 |
| commit | 69337d485cd3f8cc938bebbf2d01121e0d688889 (patch) | |
| tree | 207b977d587bb5b03a274f95b75ae3a2dc67f010 /django/db/backends/__init__.py | |
| parent | 7e3cf3cfd27e53ced0a1fc65a02849f78a292d3d (diff) | |
Set straight the sense of 'uppercases_column_names' feature flag
Diffstat (limited to 'django/db/backends/__init__.py')
| -rw-r--r-- | django/db/backends/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py index 1b12a41caf..3868b41e0d 100644 --- a/django/db/backends/__init__.py +++ b/django/db/backends/__init__.py @@ -649,7 +649,7 @@ class BaseDatabaseFeatures(object): # If NULL is implied on columns without needing to be explicitly specified implied_column_null = False - uppercases_column_names = True + uppercases_column_names = False def __init__(self, connection): self.connection = connection |
