mirror of
https://github.com/django/django.git
synced 2025-08-30 07:17:49 +00:00
Fixed #33333 -- Fixed setUpTestData() crash with models.BinaryField on PostgreSQL.
This makes models.BinaryField pickleable on PostgreSQL.
Regression in 3cf80d3fcf
.
Thanks Adam Zimmerman for the report.
This commit is contained in:
parent
9c1fe446b6
commit
2c7846d992
6 changed files with 42 additions and 1 deletions
|
@ -8,6 +8,7 @@ class Car(models.Model):
|
|||
class Person(models.Model):
|
||||
name = models.CharField(max_length=100)
|
||||
cars = models.ManyToManyField(Car, through='PossessedCar')
|
||||
data = models.BinaryField(null=True)
|
||||
|
||||
|
||||
class PossessedCar(models.Model):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue