Kaydet (Commit) e0cc36f6 authored tarafından Claude Paroz's avatar Claude Paroz

Removed unneeded app_label definitions in gis_tests

üst 53c2cf1e
......@@ -10,9 +10,6 @@ class City(models.Model):
objects = models.GeoManager()
class Meta:
app_label = 'geoadmin'
def __str__(self):
return self.name
......
......@@ -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()
......
......@@ -18,9 +18,6 @@ class NamedModel(models.Model):
class City(NamedModel):
point = models.PointField(geography=True)
class Meta:
app_label = 'geogapp'
class Zipcode(NamedModel):
code = models.CharField(max_length=10)
......@@ -31,8 +28,5 @@ class County(NamedModel):
state = models.CharField(max_length=20)
mpoly = models.MultiPolygonField(geography=True)
class Meta:
app_label = 'geogapp'
def __str__(self):
return ' County, '.join([self.name, self.state])
......@@ -36,17 +36,11 @@ class City(NamedModel):
dt = models.DateField()
point = models.PointField()
class Meta:
app_label = 'layermap'
class Interstate(NamedModel):
length = models.DecimalField(max_digits=6, decimal_places=2)
path = models.LineStringField()
class Meta:
app_label = 'layermap'
# Same as `City` above, but for testing model inheritance.
class CityBase(NamedModel):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment