Skip to content

Commit d1eb737

Browse files
Update tests/encryption_/models.py
Co-authored-by: Tim Graham <[email protected]>
1 parent 9bbe741 commit d1eb737

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/encryption_/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class Person(EncryptedModel):
99
ssn = EncryptedCharField("ssn", max_length=11, queries=["equality"])
1010
ssn2 = EncryptedCharField("ssn", max_length=11, queries=["equality"])
1111

12-
+ class Meta:
13-
+ required_db_features = {"supports_queryable_encryption"}
14-
+
12+
class Meta:
13+
required_db_features = {"supports_queryable_encryption"}
14+
1515
def __str__(self):
1616
return self.name

0 commit comments

Comments
 (0)