django-notifications/notifications/tests/sample_notifications/models.py
2023-06-24 00:10:23 +00:00

10 lines
271 B
Python

from django.db import models
from notifications.base.models import AbstractNotification
class Notification(AbstractNotification):
details = models.CharField(max_length=64, blank=True, null=True)
class Meta(AbstractNotification.Meta):
abstract = False