view gpp/mailer/models.py @ 235:d302c498560e

Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author Brian Neal <bgneal@gmail.com>
date Thu, 26 Aug 2010 04:01:58 +0000
parents aef00df91165
children
line wrap: on
line source
"""Models for the mailer application."""
import datetime

from django.db import models


MAX_SUBJECT = 120

class Message(models.Model):
    """The model to represent stored emails in the database."""
    from_address = models.EmailField()
    to_address = models.EmailField()
    subject = models.CharField(max_length=MAX_SUBJECT)
    body = models.TextField()
    creation_date = models.DateTimeField()

    class Meta:
        ordering = ('creation_date', )

    def __unicode__(self):
        return u'From: %s, To: %s, Subj: %s' % (
            self.from_address, self.to_address, self.subject)

    def save(self, *args, **kwargs):
        if self.id is None:
            self.creation_date = datetime.datetime.now()
        super(Message, self).save(*args, **kwargs)