We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fd21e4 commit 9bbe741Copy full SHA for 9bbe741
tests/encryption_/models.py
@@ -9,5 +9,8 @@ class Person(EncryptedModel):
9
ssn = EncryptedCharField("ssn", max_length=11, queries=["equality"])
10
ssn2 = EncryptedCharField("ssn", max_length=11, queries=["equality"])
11
12
++ class Meta:
13
++ required_db_features = {"supports_queryable_encryption"}
14
++
15
def __str__(self):
16
return self.name
0 commit comments