Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types.

This commit is contained in:
Matt C 2016-03-15 19:23:44 +11:00 committed by Tim Graham
parent f8b23e52e8
commit e7e5d9b338
2 changed files with 1 additions and 4 deletions

View file

@ -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: