From 14161dba6b8ef496b77561eecca8cbd59323931e Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 25 Jun 2007 03:08:00 +0000 Subject: [PATCH] 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 --- django/db/backends/postgresql_psycopg2/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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('"'):