mirror of
https://github.com/Hopiu/django-notifications.git
synced 2026-05-03 11:04:43 +00:00
10 lines
270 B
Python
10 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
|