summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-14 16:44:53 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-14 16:44:53 +0000
commitf36e96cc9c6c1e99fb55cfc6940f04fa9a7c86ff (patch)
tree4264028051ab0673b29da8b633386666150fb8d5
parent4b9148ac19b2778c5f54220830f52957536e52db (diff)
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
-rw-r--r--django/db/backends/creation.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/django/db/backends/creation.py b/django/db/backends/creation.py
new file mode 100644
index 0000000000..4071cef6aa
--- /dev/null
+++ b/django/db/backends/creation.py
@@ -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