mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types.
This commit is contained in:
parent
f8b23e52e8
commit
e7e5d9b338
2 changed files with 1 additions and 4 deletions
|
@ -31,9 +31,6 @@ class TagField(models.SmallIntegerField):
|
|||
def get_prep_value(self, value):
|
||||
return value.tag_id
|
||||
|
||||
def get_db_prep_value(self, value, connection, prepared=False):
|
||||
return self.get_prep_value(value)
|
||||
|
||||
|
||||
class PostgreSQLModel(models.Model):
|
||||
class Meta:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue