2010-09-26 21:32:53 +00:00
|
|
|
from django.db import models
|
|
|
|
|
2023-10-19 22:52:39 +00:00
|
|
|
|
2024-04-09 12:50:06 +00:00
|
|
|
class Unsubscription(models.Model):
|
|
|
|
created = models.DateTimeField(auto_now_add=True, blank=True)
|
|
|
|
email = models.EmailField()
|
2024-04-10 06:18:51 +00:00
|
|
|
mailout = models.SlugField()
|
2010-09-26 21:32:53 +00:00
|
|
|
|
2023-09-07 13:15:48 +00:00
|
|
|
class Meta:
|
2024-04-09 12:50:06 +00:00
|
|
|
ordering = ['created']
|