Added django/db/backends/creation.py, with BaseCreation. Refs #5461

git-svn-id: http://code.djangoproject.com/svn/django/trunk@6192 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-09-14 16:44:53 +00:00
parent 4b9148ac19
commit f36e96cc9c
1 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
class BaseCreation(object):
"""
This class encapsulates all backend-specific differences that pertain to
database *creation*, such as the column types to use for particular Django
Fields.
"""
pass