summaryrefslogtreecommitdiff
path: root/django/db/backends/postgresql
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2008-07-18 04:34:47 +0000
committerAdrian Holovaty <adrian@holovaty.com>2008-07-18 04:34:47 +0000
commitd261c1d000cfe05c6f3e290ca6b993606aed7f63 (patch)
tree595640c9af2559ccd46049f3d269ca8cf543eee3 /django/db/backends/postgresql
parentdf2b19cc17666fe36a8153c3de45b20ffe3334ab (diff)
Fixed #7805 -- Removed ImageField.get_internal_type() because it doesn't offer anything beyond FileField's implementation. Thanks, Gulopine
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7947 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql')
-rw-r--r--django/db/backends/postgresql/creation.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/creation.py b/django/db/backends/postgresql/creation.py
index b3e374da27..a8877a7d9b 100644
--- a/django/db/backends/postgresql/creation.py
+++ b/django/db/backends/postgresql/creation.py
@@ -13,7 +13,6 @@ DATA_TYPES = {
'FileField': 'varchar(%(max_length)s)',
'FilePathField': 'varchar(%(max_length)s)',
'FloatField': 'double precision',
- 'ImageField': 'varchar(%(max_length)s)',
'IntegerField': 'integer',
'IPAddressField': 'inet',
'NullBooleanField': 'boolean',