summaryrefslogtreecommitdiff
path: root/tests/gis_tests/geoapp/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/gis_tests/geoapp/models.py')
-rw-r--r--tests/gis_tests/geoapp/models.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/gis_tests/geoapp/models.py b/tests/gis_tests/geoapp/models.py
index a0e910684d..de08715256 100644
--- a/tests/gis_tests/geoapp/models.py
+++ b/tests/gis_tests/geoapp/models.py
@@ -24,9 +24,6 @@ class Country(NamedModel):
class City(NamedModel):
point = models.PointField()
- class Meta:
- app_label = 'geoapp'
-
# This is an inherited model from City
class PennsylvaniaCity(City):
@@ -37,16 +34,10 @@ class PennsylvaniaCity(City):
objects = models.GeoManager()
- class Meta:
- app_label = 'geoapp'
-
class State(NamedModel):
poly = models.PolygonField(null=gisfield_may_be_null) # Allowing NULL geometries here.
- class Meta:
- app_label = 'geoapp'
-
class Track(NamedModel):
line = models.LineStringField()