summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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