Author: adrian Date: 2007-09-14 11:44:53 -0500 (Fri, 14 Sep 2007) New Revision: 6192
Added: django/trunk/django/db/backends/creation.py Log: Added django/db/backends/creation.py, with BaseCreation. Refs #5461 Added: django/trunk/django/db/backends/creation.py =================================================================== --- django/trunk/django/db/backends/creation.py (rev 0) +++ django/trunk/django/db/backends/creation.py 2007-09-14 16:44:53 UTC (rev 6192) @@ -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 --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
