mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Revert "Removed unneeded app_label definitions in gis_tests"
This reverts commit e0cc36f615
.
The problem is the following:
* With non-gis backends, gis_tests sub apps are not discovered
(see runtests.py)
* Consequently, the app_label is inferred from the gis_tests
AppConfig
* Then models with same names in different sub apps conflict
because of same model_name/app_label pair.
This commit is contained in:
parent
e0cc36f615
commit
a6bada1ee0
4 changed files with 24 additions and 0 deletions
|
@ -10,6 +10,9 @@ class City(models.Model):
|
|||
|
||||
objects = models.GeoManager()
|
||||
|
||||
class Meta:
|
||||
app_label = 'geoadmin'
|
||||
|
||||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue