LPgenerator / django-db-mailer

Django module to easily send emails/sms/tts/push using django templates stored on database and managed through the Django Admin
https://github.com/LPgenerator/django-db-mailer
GNU General Public License v2.0
255 stars 81 forks source link

NullBooleanField is deprecated #126

Open chetan1029 opened 4 years ago

chetan1029 commented 4 years ago

NullBooleanField is deprecated in Django 3.1.1 and it will be removed in Django 4.0.0. So have to replace NullBooleanField with BooleanField(null=True) to make it work for Django 4.x.

ir4y commented 4 years ago

Hi @chetan1029 Thank you for the report. Could you please create a pull request with the fix? It will be a good contribution to the project.

DhavalGojiya commented 3 weeks ago

Hi @chetan1029 Thank you for the report. Could you please create a pull request with the fix? It will be a good contribution to the project.

I have already raised a PR addressing the changes required for compatibility with Django 4.2 LTS. Here is the PR link: PR LINK