Mercurial > public > sg101
view gpp/core/models.py @ 233:6dde069debd4
Fix bug in r246.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 01 Aug 2010 21:30:22 +0000 |
parents | 423c39ee44e0 |
children | dcc929973bba |
line wrap: on
line source
""" This file contains the core Models used in gpp """ from django.db import models from django.contrib import auth class UserLastVisit(models.Model): """ This model represents timestamps indicating a user's last visit to the site. """ user = models.ForeignKey(auth.models.User, unique=True) last_visit = models.DateTimeField(db_index=True) class AnonLastVisit(models.Model): """ This model represents timestamps for the last visit from non-authenticated users. """ ip = models.CharField(max_length=16, db_index=True, unique=True) last_visit = models.DateTimeField(db_index=True)