django-notifications/notifications/tests/sample_notifications/models.py

10 lines
270 B
Python
Raw Normal View History

2020-04-08 21:40:02 +00:00
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