From 328c70ef157533f57d38e7c9a5740095565ebf9d Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Sat, 11 Feb 2012 22:17:02 +0000 Subject: [PATCH] Fixed #10837 -- Added CHAR(X)->CharField to mapping used in Postgres DB introspection. Thanks trbs for the report and initial patch and to Claude Paroz for updating it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@17511 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/db/backends/postgresql_psycopg2/introspection.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/db/backends/postgresql_psycopg2/introspection.py b/django/db/backends/postgresql_psycopg2/introspection.py index 0027ec5eaf..2fa1248f02 100644 --- a/django/db/backends/postgresql_psycopg2/introspection.py +++ b/django/db/backends/postgresql_psycopg2/introspection.py @@ -12,6 +12,7 @@ class DatabaseIntrospection(BaseDatabaseIntrospection): 700: 'FloatField', 701: 'FloatField', 869: 'GenericIPAddressField', + 1042: 'CharField', # blank-padded 1043: 'CharField', 1082: 'DateField', 1083: 'TimeField',