summaryrefslogtreecommitdiff
path: root/tests/aggregation/models.py
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2026-04-18 08:53:21 +0200
committerGitHub <noreply@github.com>2026-04-18 08:53:21 +0200
commited79c5959add54b6e8ea589ec601e0d2e801517e (patch)
tree0d00f241bea6de88203d1314c7de92cb262b3a3f /tests/aggregation/models.py
parentd687d412a9abd9c80e31945f16ce32c020512394 (diff)
Fixed #37028 -- Added BitAnd(), BitOr(), and BitXor() aggregates.
Diffstat (limited to 'tests/aggregation/models.py')
-rw-r--r--tests/aggregation/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/aggregation/models.py b/tests/aggregation/models.py
index 6eed9b22fb..bbfeb1016e 100644
--- a/tests/aggregation/models.py
+++ b/tests/aggregation/models.py
@@ -13,7 +13,7 @@ class Author(models.Model):
class Publisher(models.Model):
name = models.CharField(max_length=255)
- num_awards = models.IntegerField()
+ num_awards = models.IntegerField(null=True)
duration = models.DurationField(blank=True, null=True)
def __str__(self):