django-notifications/notifications/tests/sample_notifications/models.py
2020-05-07 10:49:47 -05:00

9 lines
270 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