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
This commit is contained in:
Adrian Holovaty 2006-01-13 04:14:05 +00:00
parent 41511cc3bd
commit 5e57f795b5
1 changed files with 1 additions and 0 deletions

View File

@ -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 = {