diff options
| author | Jani Tiainen <jani.tiainen@tintti.net> | 2015-08-19 21:37:31 +0300 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-08-19 19:02:30 -0400 |
| commit | 1b8d7eff3bb1de1f0b51137d720d6fcf7622bced (patch) | |
| tree | 9443e12afeead1ab86b625682144000703e2f0fd /tests | |
| parent | bda408f60bf901620e88d25aad38210985e5c758 (diff) | |
Refs #12400 -- Added supports_geometry_field_unique_index GIS db feature.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/gis_tests/geoapp/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gis_tests/geoapp/models.py b/tests/gis_tests/geoapp/models.py index 664aac9d7b..a819c17ada 100644 --- a/tests/gis_tests/geoapp/models.py +++ b/tests/gis_tests/geoapp/models.py @@ -63,7 +63,7 @@ class MultiFields(NamedModel): class Meta: unique_together = ('city', 'point') - required_db_features = ['gis_enabled'] + required_db_features = ['gis_enabled', 'supports_geometry_field_unique_index'] class Truth(models.Model): |
