summaryrefslogtreecommitdiff
path: root/django/core/db/backends/sqlite3.py
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-28 23:08:47 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-28 23:08:47 +0000
commitc1a16d54b0fce2ffe89eab9a69e689f87a4c1ddc (patch)
treecc6b1175cb02965402868d08fb61ce32d61d8aa1 /django/core/db/backends/sqlite3.py
parentcd34c163cc862113da5b27bf9f5ff452f538fb2c (diff)
Fixed #553 -- Added django.core.meta.fields.Field.get_internal_type() hook, for creating custom meta.Field subclasses. Thanks, wojtek3
git-svn-id: http://code.djangoproject.com/svn/django/trunk@713 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/db/backends/sqlite3.py')
-rw-r--r--django/core/db/backends/sqlite3.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/django/core/db/backends/sqlite3.py b/django/core/db/backends/sqlite3.py
index fd44341400..d4b936f82e 100644
--- a/django/core/db/backends/sqlite3.py
+++ b/django/core/db/backends/sqlite3.py
@@ -170,7 +170,6 @@ DATA_TYPES = {
'TimeField': 'time',
'URLField': 'varchar(200)',
'USStateField': 'varchar(2)',
- 'XMLField': 'text',
}
DATA_TYPES_REVERSE = {}