Files @ 495f841d3938
Branch filter:

Location: website/conservancy/contacts/models.py

bsturmfels
contacts: Add field to represent the mailout the unsubscribe came from
from django.db import models


class Unsubscription(models.Model):
    created = models.DateTimeField(auto_now_add=True, blank=True)
    email = models.EmailField()
    mailout = models.SlugField()

    class Meta:
        ordering = ['created']