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:
parent
4b9148ac19
commit
f36e96cc9c
|
@ -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
|
Loading…
Reference in New Issue