summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-25 03:08:00 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-06-25 03:08:00 +0000
commit14161dba6b8ef496b77561eecca8cbd59323931e (patch)
tree7c24c01403901eb2f43e959d6306b1671b692a55
parenta56a8dacf3b0bc54f6133a2037c2c452152c1653 (diff)
Fixed #4678 -- Fixed table name matching during syncdb for pyscopg2 backend
(the psycopg backend was already correct). Patch from tailofthesun@gmail.com. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5528 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/backends/postgresql_psycopg2/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py
index 01c0503078..36f4d97a22 100644
--- a/django/db/backends/postgresql_psycopg2/base.py
+++ b/django/db/backends/postgresql_psycopg2/base.py
@@ -80,7 +80,7 @@ needs_datetime_string_cast = False
needs_upper_for_iops = False
supports_constraints = True
supports_tablespaces = False
-uses_case_insensitive_names = True
+uses_case_insensitive_names = False
def quote_name(name):
if name.startswith('"') and name.endswith('"'):