Skip to content

Commit 20de1f2

Browse files
committed
Code review fixes (4/x)
Don't break the build Part II
1 parent ecc386d commit 20de1f2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/encryption_/models.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@ class Meta:
8080

8181

8282
class EncryptedNumbers(models.Model):
83+
class Meta:
84+
required_db_features = {"supports_queryable_encryption"}
85+
8386
pos_bigint = EncryptedPositiveBigIntegerField(queries=EQUALITY_QUERY)
8487
pos_smallint = EncryptedPositiveSmallIntegerField(queries=EQUALITY_QUERY)
8588
smallint = EncryptedSmallIntegerField(queries=EQUALITY_QUERY)

0 commit comments

Comments
 (0)