1👍
✅
I guess you’re trying to save binary data into CharField
s. Either change field types of user.iv
and user.secret_value
to BinaryField
, or encode these values using for example base64 encoder.
Source:stackexchange.com