Mercurial > public > sg101
view gpp/core/models.py @ 228:d77e0dc772ad
Implement #88; add option to create a new forum thread from a new calendar entry.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 11 Jul 2010 21:03:41 +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)