Django-Cryptography not encrypting sensitive data in models as expected

I am using django-cryptography to encrypt my sensible data, but it does not does it.


```python

from django_cryptography.fields import encrypt

class ComplaintModel(BaseModel):

detailed_description = encrypt(models.TextField(null=False,))

<br>

[![enter image description here][1]][1]


<br>

[![enter image description here][2]][2]


  [1]: https://i.sstatic.net/guv90eIz.png
  [2]: https://i.sstatic.net/2gEHhGM6.png
Back to Top