Hi everyone,
It is possible to map one field in a Model to two or more database columns? For example:
class User(models.Model):
encrypted_hash_email = EncryptedHash()
then in database we have
encrypted_email and hash_email columns?
Thanks and have a good day!