Added a test for ArrayField(HStoreField()).

This commit is contained in:
Simon Charette 2017-05-03 00:24:54 -04:00
parent 67702f3505
commit f37467ec7a
3 changed files with 28 additions and 3 deletions

View file

@ -71,6 +71,7 @@ class OtherTypesArrayModel(PostgreSQLModel):
class HStoreModel(PostgreSQLModel):
field = HStoreField(blank=True, null=True)
array_field = ArrayField(HStoreField(), null=True)
class CharFieldModel(models.Model):