From 5e57f795b5a27bca6aa8c3c9c26f14c516199e58 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 13 Jan 2006 04:14:05 +0000 Subject: [PATCH] magic-removal: Added db_table to Session model. Note that this is changed from current Django trunk git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1937 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/sessions/models.py | 1 + 1 file changed, 1 insertion(+) diff --git a/django/contrib/sessions/models.py b/django/contrib/sessions/models.py index 8600ad7a9c..4398071339 100644 --- a/django/contrib/sessions/models.py +++ b/django/contrib/sessions/models.py @@ -38,6 +38,7 @@ class Session(models.Model): expire_date = models.DateTimeField(_('expire date')) objects = SessionManager() class Meta: + db_table = 'django_sessions' verbose_name = _('session') verbose_name_plural = _('sessions') module_constants = {