Django-notifs поднимает исключение: django.core.exceptions.FieldDoesNotExist: В уведомлении нет поля с именем 'timestamp'

I'm trying to apply Notifications system to my django (version 3.2) app for the first time using the tutorial: https://django-notifs.readthedocs.io/en/stable/index.html#

I'm stuck at the installation process. First I solved the (fields.E180) SQLite does not support JSONFields., using the documentation at: https://code.djangoproject.com/wiki/JSON1Extension

After running makemigrations, it worked fine. BUT after running manage.py migrate, it threw the following error:

raise FieldDoesNotExist("%s has no field named '%s'" % (self.object_name, field_name)) django.core.exceptions.FieldDoesNotExist: Notification has no field named 'timestamp'.

Пожалуйста, помогите мне :(

Вернуться на верх