2010-09-26 17:32:53 -04:00
|
|
|
from django.db import models
|
|
|
|
|
|
2023-10-20 09:52:39 +11:00
|
|
|
|
2024-04-09 22:50:06 +10:00
|
|
|
class Unsubscription(models.Model):
|
|
|
|
|
created = models.DateTimeField(auto_now_add=True, blank=True)
|
|
|
|
|
email = models.EmailField()
|
2010-09-26 17:32:53 -04:00
|
|
|
|
2023-09-07 23:15:48 +10:00
|
|
|
class Meta:
|
2024-04-09 22:50:06 +10:00
|
|
|
ordering = ['created']
|