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

@ -45,6 +45,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('field', HStoreField(blank=True, null=True)),
('array_field', ArrayField(HStoreField(), null=True)),
],
options={
'required_db_vendor': 'postgresql',