summaryrefslogtreecommitdiff
path: root/django/db/models/__init__.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-11-05 13:59:42 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-11-05 13:59:42 +0000
commitea100b607acbca31e813118d84c5c6c48fda1ae0 (patch)
tree958aa0628dc91f958354fb02e619a9e2799a4114 /django/db/models/__init__.py
parent595e75e8dd5db5982574d5d3222054186ba190d8 (diff)
Added the small changes necessary to make creating custom model fields easier.
Also includes some tests for this. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6651 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/models/__init__.py')
-rw-r--r--django/db/models/__init__.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/django/db/models/__init__.py b/django/db/models/__init__.py
index 4c712a0dc2..86763d99f9 100644
--- a/django/db/models/__init__.py
+++ b/django/db/models/__init__.py
@@ -7,6 +7,7 @@ from django.db.models.query import Q
from django.db.models.manager import Manager
from django.db.models.base import Model, AdminOptions
from django.db.models.fields import *
+from django.db.models.fields.subclassing import SubfieldBase
from django.db.models.fields.related import ForeignKey, OneToOneField, ManyToManyField, ManyToOneRel, ManyToManyRel, OneToOneRel, TABULAR, STACKED
from django.db.models import signals
from django.utils.functional import curry