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:
parent
41511cc3bd
commit
5e57f795b5
|
@ -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 = {
|
||||
|
|
Loading…
Reference in New Issue