diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2008-07-18 04:34:47 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2008-07-18 04:34:47 +0000 |
| commit | d261c1d000cfe05c6f3e290ca6b993606aed7f63 (patch) | |
| tree | 595640c9af2559ccd46049f3d269ca8cf543eee3 /django/db/backends/sqlite3/creation.py | |
| parent | df2b19cc17666fe36a8153c3de45b20ffe3334ab (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/sqlite3/creation.py')
| -rw-r--r-- | django/db/backends/sqlite3/creation.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/sqlite3/creation.py b/django/db/backends/sqlite3/creation.py index 54b75f23be..c1c2b3170d 100644 --- a/django/db/backends/sqlite3/creation.py +++ b/django/db/backends/sqlite3/creation.py @@ -12,7 +12,6 @@ DATA_TYPES = { 'FileField': 'varchar(%(max_length)s)', 'FilePathField': 'varchar(%(max_length)s)', 'FloatField': 'real', - 'ImageField': 'varchar(%(max_length)s)', 'IntegerField': 'integer', 'IPAddressField': 'char(15)', 'NullBooleanField': 'bool', |
