From f36e96cc9c6c1e99fb55cfc6940f04fa9a7c86ff Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 14 Sep 2007 16:44:53 +0000 Subject: [PATCH] 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 --- django/db/backends/creation.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 django/db/backends/creation.py 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