mirror of
https://github.com/lemeow125/DRF_Template.git
synced 2024-11-17 04:09:25 +08:00
13 lines
391 B
Python
13 lines
391 B
Python
|
from django.db import models
|
||
|
|
||
|
|
||
|
class Notification(models.Model):
|
||
|
recipient = models.ForeignKey(
|
||
|
'accounts.CustomUser', on_delete=models.CASCADE)
|
||
|
content = models.CharField(max_length=1000, null=True)
|
||
|
timestamp = models.DateTimeField(auto_now_add=True, editable=False)
|
||
|
dismissed = models.BooleanField(default=False)
|
||
|
|
||
|
def __str__(self):
|
||
|
return self.content
|